/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap');*/

/* =============================
   FONTES LOCAIS OTIMIZADAS
============================= */
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* ====================================================== VARIÁVEIS ====================================================== */
:root {
	--azul: #0a3d62;
	--azul-claro: #1e90ff;
	--laranja: #ff7a18;
	--cinza: #f5f5f5;
	--verde: #25d366;
}

/* ====================================================== RESET ====================================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
}

body {
	color: #333;
	line-height: 1.6;
	padding-top: 80px;
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 400;
}

/* ====================================================== HERO ====================================================== */
.hero {
  min-height: 90vh;

  background-image: url("baleiaHero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;

  animation: heroBg 30s infinite;
}

@keyframes heroBg {
  0%,
  33.33% {
    background-image: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.2)), url("baleiaHero.webp");
  }

  33.34%,
  66.66% {
    background-image:  linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.2)), url("background01.webp");
  }

  66.67%,
  100% {
    background-image:  linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.2)), url("background02.webp");
  }
}


.hero-content {
	/*max-width: 720px;*/
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	text-shadow: 1px 5px 12px #021D2D, 0 0 1px #fff;
}

.hero-subtitle {
	font-size: 2.4rem;
	margin-bottom: 20px;
	text-shadow: 2px 2px 2px #000, 0 0 5px #FFFFF9;
    color: #ffbf00;
}

.hero p {
	font-size: 1.15rem;
	margin-bottom: 30px;
	text-shadow: 2px 2px 4px #000000, 0 0 10px #ffffff;
}

.inner-headings {
	height: 150px;
	line-height: 150px;
	font-size: 5rem;
	color: #ffbf00;
    text-shadow: 1px 5px 12px #021D2D, 0 0 1px #FFFFF9;
    overflow: hidden;
    font-weight: 700;
}

.inner-headings span {
	position: relative;
	font-size: 8rem;
	animation: animation 10s ease Infinite;
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

@keyframes animation {

	0%,
	100% {
		top: 0;
	}

	20% {
		top: 0;
	}

	25% {
		top: -180px;
	}

	45% {
		top: -180px;
	}

	50% {
		top: -340px;
	}

	70% {
		top: -340px;
	}

	75% {
		top: -510px;
	}

	95% {
		top: -510px;
	}
}

/* Exemplo de como deve estar no seu Media Query mobile */
/* No modo mobile (ajuste os pixels conforme seu design) */
@media (max-width: 768px) {
  .nav {
    display: none; /* O menu começa escondido no celular */
    position: absolute;
    top: 70px; /* Altura do seu header */
    left: 0;
    width: 100%;
    background-color: #fff; /* Ou a cor da sua preferência */
    flex-direction: column;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  /* Quando o JS colocar a classe .active, o menu aparece! */
  .nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    padding: 20px 0;
  }
  
  .nav-list li {
    padding: 10px 0;
  }
}

.btn-whatsapp {
	background: #ffbf00;
    color: #001873;
    padding: 15px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* ====================================================== PASSEIOS COLETIVOS ====================================================== */
.coletivos {
	padding: 80px 8%;
	background: var(--cinza);
}

.coletivos h2 {
	color: var(--laranja);
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 50px;
}

.coletivo-card {
	display: grid;
	grid-template-columns: 260px 1fr 260px;
	gap: 25px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, .1);
	margin-bottom: 40px;
	overflow: hidden;
}

.coletivo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.coletivo-info {
	padding: 25px;
}

.badge {
	background: var(--laranja);
	color: #fff;
	padding: 5px 12px;
	border-radius: 8px;
	font-size: .75rem;
	margin-bottom: 10px;
	display: inline-block;
}

.video {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

.right{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
	text-align: center;
    color: #f57517;
    font-weight: 700;
}

.destaque {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}

.coletivo-info h3 {
	margin-bottom: 10px;
}

.coletivo-meta {
	padding: 25px;
	border-left: 1px solid #eee;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: fit-content;
}

.preco strong {
	font-size: 1.5rem;
	color: var(--azul);
}

.btn-vermais {
	background: #19a14c;
	color: #fff;
	padding: 12px;
	border-radius: 30px;
	text-decoration: none;
	text-align: center;
}

.btn-roteiro {
	background: #f57517;
	color: #fff;
	padding: 12px;
	border-radius: 30px;
	text-decoration: none;
	text-align: center;
}

.btn-roteiro a{
	background: #f57517;
	color: #fff;
	padding: 12px;
	border-radius: 30px;
	text-decoration: none;
	text-align: center;	
    font-weight: 700;
}

/* ====================================================== LANCHA ====================================================== */
.lancha {
	padding: 80px 8%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.lancha img {
	width: 100%;
	max-height: 380px;
	object-fit: cover;
	border-radius: 18px;
}

.lancha h2 {
	font-size: 2rem;
	margin-bottom: 22px;
	color: var(--azul);
}

/* ====================================================== DIFERENCIAIS & SEGURANÇA ====================================================== */
.diferenciais,
.seguranca {
	padding: 70px 8%;
	background: #ffffff;
}

.diferenciais ul,
.seguranca ul {
	list-style: none;
}

.diferenciais li,
.seguranca li {
	margin-bottom: 12px;
}

/* ====================================================== SEÇÃO SEGURANÇA EM DESTAQUE ====================================================== */
.seguranca-destaque {
	background: linear-gradient(180deg, #f7f9fc, #ffffff);
	padding: 80px 10%;
	position: relative;
}

.seguranca-container {
	max-width: 900px;
	margin: 0 auto;
}

.seguranca-icon {
	display: block;
	width: 80px;
	height: auto;
	margin: 0 auto 24px;
}

.seguranca-destaque h2 {
	font-size: 2.2rem;
	color: var(--azul);
	margin-bottom: 25px;
	text-align: center;
}

.seguranca-destaque p {
	font-size: 1.05rem;
	line-height: 1.75;
	color: #444;
	margin-bottom: 18px;
}

.seguranca-highlight {
	background: #eef5ff;
	padding: 18px 22px;
	border-left: 5px solid var(--azul-claro);
	border-radius: 8px;
	font-weight: 600;
}

/* SERVIÇOS */
.servicos {
	padding: 80px 0;
	background: #f9fafb;
}

.section-title {
	text-align: center;
	font-size: 3em;
	margin-bottom: 10px;
	color: #ff7a18;
}

.section-subtitle {
	text-align: center;
	font-size: 1.5em;
	color: #666;
	max-width: 900px;
	margin: 0 auto 50px;
}

.section-subtitle2 {
	text-align: center;
	font-size: 1.25em;
	color: #666;
	margin: 10px 10px 10px 10px;
}

.servicos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* Tablet */
@media (max-width: 992px) {
	.servicos-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */
@media (max-width: 576px) {
	.servicos-grid {
		grid-template-columns: 1fr;
	}
}

.servico-card {
	background: #fff;
	border-radius: 16px;
	padding: 32px 24px;
	text-align: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	transition: transform .3s ease, box-shadow .3s ease;
}

.servico-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.servico-icon {
	width: 128px;
	height: 128px;
	margin-bottom: 20px;
}

.servico-card h3 {
	font-size: 22px;
	margin-bottom: 12px;
	color: #ff7a18;
}

.servico-card p {
	font-size: 15px;
	color: #000000;
	line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 768px) {
	.seguranca-destaque {
		padding: 60px 8%;
	}

	.seguranca-destaque h2 {
		font-size: 1.7rem;
	}

	.seguranca-destaque p {
		font-size: 0.95rem;
	}
	.gallery img {
    width: 40%;
	}
}

/* ====================================================== SEO TEXT (CONTEÚDO INVISÍVEL AO USUÁRIO, VISÍVEL AO GOOGLE) ====================================================== */
.seo-text {
	padding: 90px 10%;
	background: #fff;
}

.seo-text h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 10px;
    color: #ff7a18;
}

.seo-text h3 {
	font-size: 1.4rem;
	margin: 28px 0 12px;
	color: var(--azul-claro);
}

.seo-text p {
	font-size: 1rem;
	line-height: 1.75;
	color: #444;
	margin-bottom: 16px;
	/*max-width: 900px;*/
}

/* SEO: acessível mas discreto */
.seo-text strong {
	font-weight: 700;
}

/* RESPONSIVO */
@media (max-width: 768px) {
	.seo-text {
		padding: 70px 8%;
	}

	.seo-text h2 {
		font-size: 1.7rem;
	}

	.seo-text h3 {
		font-size: 1.25rem;
	}

	.seo-text p {
		font-size: 0.95rem;
	}
}

/* ====================================================== PASSEIOS PRIVATIVOS ====================================================== */
.privativos {
	padding: 90px 0;
	background: #f6f8fb;
}

.privativos h2 {
	color: var(--laranja);
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 50px;
}

.privativos .subtitulo {
	text-align: center;
	margin: 10px 0 50px;
	color: #555;
}

.cards-privativos {
	max-width: 1300px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	padding: 0 30px;
}

.card-privativo {
	background: #fff;
	border-radius: 26px;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .1);
	transition: transform .35s ease, box-shadow .35s ease;
	overflow: visible;
}

.card-privativo:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
}

.card-img {
	position: relative;
	height: 240px;
	background-size: cover;
	background-position: center;
	border-top-right-radius: 26px;
	border-top-left-radius: 26px;
	overflow: visible;
}

.card-title {
	position: absolute;
	top: 0;
	width: 100%;
	background: #00a7b9;
	color: #fff;
	text-align: center;
	padding: 14px;
	font-weight: 800;
	font-size: 1.1rem;
	border-top-right-radius: 26px;
	border-top-left-radius: 26px;
}

.card-price {
	position: relative;
	top: 72%;
	/* fica acima da imagem */
	left: 56%;
	/* sai para fora à direita */
	width: 50%;
	/* 50% da largura */
	background: #eb6400;
	color: #fff;
	padding: 14px 16px;
	border-radius: 16px;
	/* cantos arredondados */
	text-align: center;
	z-index: 5;
	/* garante que fique sobre tudo */
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Texto auxiliar acima do valor */
.card-price small {
	display: block;
	font-size: 0.75rem;
	opacity: 0.9;
	margin-bottom: 4px;
}

/* Valor em destaque */
.card-price strong {
	display: block;
	font-size: 1rem;
	font-weight: 800;
}

.card-content {
	padding: 22px;
	font-size: .95rem;
}

/* ====================================================== CTA FINAL ====================================================== */
.cta-final {
	background: var(--azul);
	color: #fff;
	padding: 80px 8%;
	text-align: center;
}

.cta-final h2 {
	font-size: 2.4rem;
	margin-bottom: 25px;
}

/* ====================================================== MAPA ====================================================== */
.mapa {
	padding: 80px 8%;
}

.mapa iframe {
	width: 100%;
	height: 420px;
	border-radius: 22px;
	border: none;
}

/* ====================================================== AVALIAÇÕES ====================================================== */
.avaliacoes {
	padding: 80px 8%;
	background: #fff;
}

.review {
	background: #fff;
	padding: 25px;
	border-radius: 18px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
	margin-bottom: 20px;
}

/* ====================================================== MENU / HEADER ====================================================== */
.site-header {
	position: fixed;
	top: 0;
	width: 100%;
	background: #ffffff;
	z-index: 1000;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
	max-width: 1300px;
	margin: auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo a {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.logo img {
	width: 90px;
	height: auto;
}

.logo span {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--azul);
	white-space: nowrap;
}

/* ====================================================== DESKTOP ====================================================== */
.nav {
	display: flex;
}

.nav-list {
	list-style: none;
	display: flex;
	gap: 32px;
}

.nav-list li {
	position: relative;
}

.nav-list a {
	text-decoration: none;
	color: #333;
	font-weight: 600;
}

.nav-list a:hover {
	color: var(--laranja);
}

/* SUBMENU DESKTOP */
.submenu {
	position: absolute;
	top: 120%;
	left: 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
	list-style: none;
	padding: 12px 0;
	min-width: 240px;
	display: none;
}

.has-submenu:hover .submenu {
	display: block;
}

.submenu li a {
	padding: 12px 22px;
	display: block;
}

/* BOTÃO HAMBURGUER (DESKTOP OCULTO) */
.menu-toggle {
	display: none;
	font-size: 1.9rem;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--azul);
}

/* ====================================================== MOBILE ====================================================== */
@media (max-width: 600px) {
	.logo span {
		font-size: 1em;
	}

	.logo img {
		width: 84px;
	}
	.gallery img {
    width: 40%;
	}
}

@media (max-width: 900px) {

	/* ESCONDE MENU NO MOBILE */
	.nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		flex-direction: column;
		box-shadow: 0 14px 30px rgba(0, 0, 0, .15);
	}

	/* ABRE MENU AO CLICAR */
	.nav.active {
		display: block;
	}

	.menu-toggle {
		display: block;
	}

	.nav-list {
		flex-direction: column;
		gap: 0;
	}

	.nav-list li {
		border-bottom: 1px solid #eee;
	}

	.nav-list a {
		padding: 16px 24px;
		display: block;
	}

	/* SUBMENU MOBILE */
	.submenu {
		position: static;
		display: none;
		background: #f9f9f9;
		box-shadow: none;
	}

	.has-submenu.open .submenu {
		display: block;
	}
}

/* ====================================================== WHATSAPP FIXO ====================================================== */
.whatsapp-fixo {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 65px;
	height: 65px;
	background-color: var(--verde);
	background-image: url("assets/icons/whatsapp.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 34px 34px;
	border-radius: 50%;
	box-shadow: 0 15px 30px rgba(0, 0, 0, .3);
	z-index: 999;
}

/* ====================================================== FAQ ====================================================== */
.faq {
	padding: 80px 12%;
	background: #f9fbfd;
}

.faq strong {
	display: block;
	margin-bottom: 25px;
	color: #0a3d62;
}

/* Accordion container */
.accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Item */
.accordion-item {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
	overflow: hidden;
	transition: box-shadow .3s ease;
}

.accordion-item.active {
	box-shadow: 0 14px 36px rgba(0, 0, 0, .14);
}

/* Header */
.accordion-button {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 22px;
	display: flex;
	align-items: center;
	gap: 14px;
	cursor: pointer;
	font-size: 0.95rem;
	font-weight: 600;
	color: #0a3d62;
}

.accordion-button i {
	color: #1e90ff;
	font-size: 1rem;
}

.accordion-button .arrow {
	margin-left: auto;
	transition: transform .3s ease;
}

/* Rotate arrow */
.accordion-item.active .arrow {
	transform: rotate(180deg);
}

/* Body */
.accordion-body {
	max-height: 0;
	overflow: hidden;
	padding: 0 22px;
	transition: max-height .4s ease, padding .3s ease;
}

.accordion-item.active .accordion-body {
	max-height: 400px;
	padding: 0 22px 22px;
}

.accordion-body p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #444;
}

/* Mobile */
@media (max-width: 768px) {
	.faq {
		padding: 60px 8%;
	}

	.accordion-button {
		font-size: 0.9rem;
	}
	.gallery img {
    width: 40%;
	}
}

/* -------------------------------Responsivo */
@media (max-width: 768px) {
	.faq {
		padding: 60px 6%;
	}
}

/* ====================================================== RESPONSIVO ====================================================== */
@media (max-width: 900px) {
	.hero h1 {
		font-size: 2.0rem;
	}

	.hero-subtitle {
		font-size: 1.6rem;
	}

	.inner-headings {
		font-size: 2rem;
	}

	.inner-headings span {
		position: relative;
		font-size: 5rem;
	}

	.coletivo-fundo {
		background-color: orange;
	}

	.coletivo-card {
		grid-template-columns: 1fr;
	}

	.coletivo-meta {
		border-left: none;
		border-top: 1px solid #eee;
	}

	.lancha {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.cards-privativos {
		grid-template-columns: repeat(2, 1fr);
	}
	.gallery img {
    width: 40%;
	}
}

@media (max-width: 600px) {
	.hero {
		/*min-height: auto;*/
		padding: 120px 20px;
		display: flow;
	}

	.hero h1 {
		font-size: 1.5rem;
	}

	.hero-subtitle {
		font-size: 1.4rem;
	}

	.inner-headings {
		font-size: 2rem;
	}

	.inner-headings span {
		position: relative;
		font-size: 3.40rem;
	}

	.cards-privativos {
		grid-template-columns: 1fr;
	}

	.card-img {
		height: 220px;
	}

	.mapa iframe {
		height: 300px;
	}
	.gallery img {
    width: 40%;
	}
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.logo span,
.card-title {
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ====================================================== AJUSTE DE FONTES — MENU ====================================================== */
/* Logo (texto ao lado do SVG) */
.logo span {
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 2em;
}

@media (max-width: 600px) {
	.logo span {
		font-family: 'Montserrat', Arial, Helvetica, sans-serif;
		font-weight: 700;
		font-size: 1.2em;
	}

	.logo img {
		width: 84px;
	}
	.gallery img {
    width: 40%;
	}
}

/* Links principais do menu */
.nav-list>li>a {
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	font-weight: 600;
}

/* Submenu (itens internos) */
.submenu a {
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	font-weight: 500;
}

/* Menu mobile mantém leitura confortável */
@media (max-width: 900px) {
	.nav-list a {
		font-family: 'Montserrat', Arial, Helvetica, sans-serif;
		font-weight: 600;
	}

	.submenu a {
		font-family: 'Inter', Arial, Helvetica, sans-serif;
	}
}

#neonShadow{
height: 50px;
    /* width: 100px; */
    border: none;
    border-radius: 50px;
    transition: 0.3s;
    background-color: rgb(245 117 23);
    animation: glow 1s infinite;
    transition: 0.5s;
}



@keyframes glow{
  0%{
  box-shadow: 5px 5px 20px rgb(17, 82, 166),-5px -5px 20px rgb(17, 82, 166);}
  
  50%{
  box-shadow: 5px 5px 20px rgb(81, 224, 210),-5px -5px 20px rgb(81, 224, 210)
  }
  100%{
  box-shadow: 5px 5px 20px rgb(19, 68, 228),-5px -5px 20px rgb(19, 68, 228)
  }
}




.gallery {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery img {
  width: 20%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #fff;
  transition: all ease-out 0.5s;
  cursor: pointer;
  overflow: hidden;
}

.gallery img:hover {
  width: 50%;
}
