:root {
	--areia: #f5edd6;
	--areia-escura: #e8d5a3;
	--bg: #fafaf7;
	--azul-prof: #05143a;
	--azul-medio: #9030e2;
	--turquesa: #29adeb;
	--turquesa-claro: #dcaff5;
	--turquesa-vivo: #1fdafa;
	--laranja-sol: #d54beb;
	--branco: #fff;
	--texto-escuro: #06132d;
	--texto-medio: #3a5f78;
	--texto-claro: #7fa3bc;
	--borda: #d6e8f2;
	--sombra-card: 0 6px 32px rgba(5, 20, 58, .1);
	--sombra-hover: 0 20px 60px rgba(5, 20, 58, .18);
	--radius: 20px;
	--radius-sm: 12px;
	--transition: all .38s cubic-bezier(.4, 0, .2, 1);
	--gradiente: linear-gradient(135deg, var(--turquesa), var(--azul-medio));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--texto-escuro);
	font-family: "Montserrat", Arial, sans-serif;
	line-height: 1.65;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; line-height: 1.18; }
.container { width: min(1400px, 100% - 48px); margin: 0 auto; }
.narrow { max-width: 920px; }
.skip-link {
	position: fixed;
	left: 16px;
	top: -52px;
	z-index: 1200;
	padding: 12px 18px;
	background: var(--azul-prof);
	color: #fff;
}
.skip-link:focus { top: 12px; }
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 50px;
	padding: 12px 25px;
	border-radius: 50px;
	font-size: .84rem;
	font-weight: 700;
	transition: var(--transition);
}
.button-primary, .button-whatsapp {
	background: linear-gradient(135deg, #25d366, #128c7e);
	color: #fff;
	box-shadow: 0 8px 26px rgba(18, 140, 126, .25);
}
.button-primary:hover, .button-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 15px 32px rgba(18, 140, 126, .35); }
.button-light { background: #fff; color: var(--azul-prof); padding-inline: 34px; }
.button-light:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(5, 20, 58, .22); }
.button-light-border { border: 1px solid rgba(255, 255, 255, .62); color: #fff; }
.button-light-border:hover { background: rgba(255, 255, 255, .12); }

/* Header */
.site-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(20px);
	box-shadow: 0 1px 0 rgba(5, 20, 58, .06), 0 4px 24px rgba(5, 20, 58, .05);
	transition: var(--transition);
}
.admin-bar .site-header { top: 32px; }
.site-header.scrolled { box-shadow: 0 2px 40px rgba(5, 20, 58, .13); }
.header-inner {
	min-height: 76px;
	padding-top: 10px;
	padding-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
}
.brand, .site-logo {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 220px;
	padding: 0;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}
.brand-image, .site-logo img, .logo img {
	display: block;
	width: auto;
	height: 56px;
	max-width: 180px;
	object-fit: contain;
	background: transparent;
}
.site-logo .brand-mark {
	width: 43px;
	height: 43px;
	max-width: 43px;
	border-radius: 7px;
	object-fit: cover;
}
.brand-copy { display: flex; flex-direction: column; justify-content: center; }
.brand-name {
	display: block;
	font-family: "Playfair Display", serif;
	font-size: 1.28rem;
	font-weight: 700;
	line-height: 1.05;
	color: var(--azul-prof);
}
.brand-name strong { color: var(--turquesa); }
.brand small { display: block; margin-top: 3px; font-size: .57rem; letter-spacing: .22em; text-transform: uppercase; color: #378bb8; }
.primary-nav { display: flex; align-items: center; gap: 34px; }
.primary-nav > a:not(.nav-button) {
	position: relative;
	font-size: .83rem;
	font-weight: 600;
	color: var(--texto-medio);
	text-transform: uppercase;
	letter-spacing: .07em;
}
.primary-nav > a:not(.nav-button)::after {
	position: absolute;
	right: 0;
	bottom: -9px;
	left: 0;
	height: 2px;
	content: "";
	background: var(--turquesa);
	transform: scaleX(0);
	transition: var(--transition);
}
.primary-nav > a:hover::after { transform: scaleX(1); }
.nav-button { min-height: 46px; padding: 11px 24px; border-radius: 50px; background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; box-shadow: 0 8px 23px rgba(18, 140, 126, .2); }
.menu-toggle { display: none; width: 45px; height: 43px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.screen-reader-text) { display: block; height: 2px; margin: 6px 0; background: var(--azul-prof); }

/* Hero */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: #fff;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg img, .hero-bg .media-placeholder { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; animation: hero-zoom 16s ease-in-out infinite alternate; }
.hero-bg .media-placeholder { background: linear-gradient(130deg, #184b6f, var(--azul-prof)); }
.hero-overlay { background: linear-gradient(180deg, rgba(5, 20, 58, .46), rgba(5, 20, 58, .27) 37%, rgba(5, 20, 58, .75)); }
@keyframes hero-zoom { to { transform: scale(1.055); } }
.hero-frame {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 122px 24px 74px;
}
.hero-content { max-width: 900px; margin: 0 auto; text-align: center; }
.hero-tag {
	display: inline-flex;
	margin-bottom: 24px;
	padding: 8px 20px;
	border: 1px solid rgba(220, 175, 245, .55);
	border-radius: 50px;
	background: rgba(41, 173, 235, .2);
	color: var(--turquesa-claro);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .17em;
	text-transform: uppercase;
}
.hero h1 {
	max-width: 880px;
	margin: 0 auto 22px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(2.65rem, 5.3vw, 4.75rem);
	font-weight: 700;
	line-height: 1.08;
	text-shadow: 0 3px 19px rgba(5, 20, 58, .4);
}
.hero h1 em { color: var(--turquesa-claro); font-style: italic; }
.hero-sub {
	max-width: 650px;
	margin: 0 auto 42px;
	color: rgba(255, 255, 255, .94);
	font-size: 1.04rem;
	font-weight: 500;
	text-shadow: 0 2px 12px rgba(5, 20, 58, .45);
}
.search-wrap { max-width: 920px; margin: 0 auto; }
.search-glass {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 15px 18px 15px 26px;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .16);
	backdrop-filter: blur(22px);
	box-shadow: 0 14px 44px rgba(5, 20, 58, .22);
}
.search-lead { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.search-lead strong { font-family: "Playfair Display", serif; font-size: 1.2rem; }
.search-lead span { color: rgba(255, 255, 255, .8); font-size: .79rem; }
.hero-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(24px, 4vw, 60px);
	margin-top: 66px;
	text-align: center;
}
.hero-stats strong {
	display: block;
	font-family: "Playfair Display", serif;
	color: #fff;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	line-height: 1.1;
}
.hero-stats span {
	display: block;
	margin-top: 6px;
	color: var(--turquesa-claro);
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
}
.hero-stats i { width: 1px; height: 43px; background: rgba(255, 255, 255, .3); }
.hero-wave { position: absolute; z-index: 3; right: 0; bottom: -1px; left: 0; height: 82px; }
.hero-wave svg { width: 100%; height: 100%; fill: #fff; }

/* Shared sections */
.section-header { max-width: 720px; margin: 0 auto 55px; text-align: center; }
.section-tag {
	display: inline-flex;
	margin-bottom: 16px;
	color: var(--turquesa);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
}
.section-title {
	margin-bottom: 17px;
	font-family: "Playfair Display", serif;
	font-size: clamp(2.05rem, 4vw, 3.1rem);
	font-weight: 700;
	color: var(--azul-prof);
}
.section-title em { color: var(--turquesa); font-style: italic; }
.section-subtitle { color: var(--texto-medio); }
.empty-state { grid-column: 1 / -1; text-align: center; color: var(--texto-medio); }

/* About */
.about { padding: 102px 0 112px; background: #fff; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 76px; }
.about-content .section-title { text-align: left; }
.about-intro { margin-bottom: 24px; color: var(--turquesa); font-size: 1.08rem; font-weight: 600; }
.about-text { color: var(--texto-medio); }
.about-highlight {
	margin: 29px 0 34px;
	padding: 18px 21px;
	border-left: 3px solid var(--turquesa);
	background: #f5fbfd;
	color: var(--texto-escuro);
	font-family: "Playfair Display", serif;
	font-size: 1.08rem;
	font-style: italic;
}
.about-media { position: relative; }
.about-media img, .about-media .media-placeholder {
	width: 100%;
	aspect-ratio: 4 / 4.6;
	border-radius: var(--radius);
	object-fit: cover;
}
.about-media .about-image { object-position: center bottom; }
.about-media .media-placeholder { background: var(--areia); }
.about-badge {
	position: absolute;
	bottom: 34px;
	left: -34px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 27px;
	border-radius: var(--radius-sm);
	background: #fff;
	box-shadow: var(--sombra-hover);
}
.about-badge strong { font-family: "Playfair Display", serif; font-size: 2.35rem; color: var(--turquesa); line-height: 1; }
.about-badge span { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--texto-medio); }

/* Tours */
.passeios { position: relative; padding: 100px 0 58px; background: var(--areia); }
.passeios-private { padding-top: 26px; padding-bottom: 108px; }
.collection-title {
	margin: 0 0 30px;
	font-family: "Playfair Display", serif;
	font-size: clamp(1.55rem, 2.5vw, 2rem);
	color: var(--azul-prof);
}
.passeios-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}
.pass-card {
	overflow: hidden;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--sombra-card);
	transition: var(--transition);
}
.pass-card:hover { transform: translateY(-8px); box-shadow: var(--sombra-hover); }
.pass-img-wrap { position: relative; height: 236px; overflow: hidden; }
.pass-img-wrap img, .pass-img-wrap .media-placeholder { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.pass-card:hover .pass-img-wrap img { transform: scale(1.06); }
.pass-img-wrap .media-placeholder { background: linear-gradient(140deg, #ded2ae, #eee7d2); }
.pass-badge {
	position: absolute;
	top: 18px;
	left: 18px;
	padding: 7px 15px;
	border-radius: 30px;
	background: var(--turquesa);
	color: #fff;
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .11em;
	text-transform: uppercase;
}
.pass-badge-private { background: var(--azul-medio); }
.pass-duracao {
	position: absolute;
	right: 16px;
	bottom: 15px;
	padding: 6px 12px;
	border-radius: 30px;
	background: rgba(5, 20, 58, .7);
	color: #fff;
	font-size: .72rem;
}
.pass-body { padding: 25px 25px 26px; }
.pass-preco { margin: 0 0 8px; color: var(--turquesa); font-size: 1.3rem; font-weight: 700; }
.pass-preco span { color: var(--texto-claro); font-size: .73rem; font-weight: 500; }
.pass-title { margin-bottom: 5px; font-family: "Playfair Display", serif; font-size: 1.42rem; color: var(--azul-prof); }
.pass-local { margin-bottom: 14px; color: var(--texto-claro); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.pass-description { min-height: 45px; color: var(--texto-medio); font-size: .84rem; }
.pass-info {
	display: flex;
	gap: 14px;
	margin: 22px 0;
	padding-top: 17px;
	border-top: 1px solid var(--borda);
	color: var(--texto-medio);
	font-size: .76rem;
	font-weight: 600;
}
.pass-info span + span { padding-left: 14px; border-left: 1px solid var(--borda); }
.btn-reservar {
	display: block;
	padding: 13px;
	border-radius: 50px;
	background: var(--azul-prof);
	color: #fff;
	font-size: .78rem;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .08em;
	transition: var(--transition);
}
.btn-reservar:hover { background: var(--turquesa); }

/* Transfers */
.transfers { padding: 100px 0; background: #fff; }
.transfers .section-heading { max-width: 720px; margin: 0 auto 55px; text-align: center; }
.transfers .eyebrow, .gallery .eyebrow, .faq .eyebrow { display: inline-flex; margin-bottom: 16px; color: var(--turquesa); font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.transfers .section-heading h2, .gallery .section-heading h2, .faq .section-heading h2 {
	margin-bottom: 17px;
	font-family: "Playfair Display", serif;
	font-size: clamp(2.05rem, 4vw, 3.1rem);
	color: var(--azul-prof);
}
.transfers .section-heading p:last-child { color: var(--texto-medio); }
.transfer-table { overflow: hidden; border: 1px solid var(--borda); border-radius: var(--radius); background: #fff; box-shadow: var(--sombra-card); }
.transfer-head, .transfer-row {
	display: grid;
	grid-template-columns: 2fr .9fr 1.25fr .9fr 125px;
	align-items: center;
	gap: 18px;
	padding: 18px 25px;
}
.transfer-head { background: var(--azul-prof); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.transfer-row { border-bottom: 1px solid var(--borda); }
.transfer-row:last-child { border-bottom: 0; }
.transfer-row h3 { font-size: .93rem; color: var(--azul-prof); }
.transfer-notes { display: block; margin-top: 4px; color: var(--texto-claro); font-size: .72rem; font-weight: 500; }
.transfer-row span { color: var(--texto-medio); font-size: .82rem; }
.transfer-type { font-weight: 600; color: var(--turquesa) !important; }
.transfer-row strong { color: var(--turquesa); font-size: .95rem; }
.button-small { min-height: 40px; padding: 8px 13px; background: var(--azul-prof); color: #fff; font-size: .73rem; }

/* Destinations */
.destinos { padding: 101px 0; background: var(--azul-prof); color: #fff; }
.destinos .section-title { color: #fff; }
.destinos .section-subtitle { color: rgba(255, 255, 255, .72); }
.destinos-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	grid-template-rows: 224px 224px;
	gap: 16px;
}
.dest-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-sm);
}
.dest-item:first-child { grid-row: span 2; }
.dest-item img, .dest-item .media-placeholder { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.dest-item:hover img { transform: scale(1.06); }
.dest-item .media-placeholder { background: #122951; }
.dest-item::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(5, 20, 58, .78), transparent 60%); }
.dest-label { position: absolute; z-index: 1; right: 21px; bottom: 18px; left: 21px; }
.dest-label h3 { margin-bottom: 4px; font-family: "Playfair Display", serif; font-size: 1.25rem; }
.dest-label p { margin: 0; color: rgba(255, 255, 255, .78); font-size: .76rem; }

/* Differentials and gallery */
.diferenciais { padding: 100px 0; background: #fff; }
.dif-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dif-card {
	position: relative;
	padding: 38px 27px 34px;
	border: 1px solid var(--borda);
	border-radius: var(--radius);
	background: #fff;
	text-align: center;
	transition: var(--transition);
	overflow: hidden;
}
.dif-card::after { position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; content: ""; background: var(--gradiente); transform: scaleX(0); transition: var(--transition); }
.dif-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-card); }
.dif-card:hover::after { transform: scaleX(1); }
.dif-icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: rgba(41, 173, 235, .1);
	color: var(--turquesa);
}
.dif-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.dif-icon-2 { color: #1676d2; background: rgba(22, 118, 210, .1); }
.dif-icon-3 { color: #23a466; background: rgba(35, 164, 102, .1); }
.dif-icon-4 { color: var(--azul-medio); background: rgba(144, 48, 226, .1); }
.dif-card h3 { margin-bottom: 13px; font-family: "Playfair Display", serif; color: var(--azul-prof); font-size: 1.22rem; }
.dif-card p { margin: 0; color: var(--texto-medio); font-size: .84rem; }
.gallery { padding: 92px 0; background: var(--azul-prof); color: #fff; }
.gallery .section-heading { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.gallery .section-heading h2 { color: #fff; }
.gallery .section-heading p:last-child { color: rgba(255, 255, 255, .7); }
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius-sm); }
.gallery-grid img { width: 100%; height: 194px; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }

/* Testimonials, FAQ and CTA */
.depoimentos { padding: 100px 0; background: var(--areia); }
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 27px; }
.dep-card {
	position: relative;
	padding: 37px 32px 32px;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--sombra-card);
}
.dep-card::before { position: absolute; top: 15px; right: 27px; content: "\201C"; color: var(--areia-escura); font-family: Georgia, serif; font-size: 4.6rem; line-height: 1; }
.dep-stars { margin-bottom: 17px; color: #f3b521; letter-spacing: .12em; }
.dep-text { position: relative; color: var(--texto-medio); font-size: .91rem; }
.dep-author { display: flex; align-items: center; gap: 13px; margin-top: 25px; padding-top: 21px; border-top: 1px solid var(--borda); }
.dep-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.dep-author p { margin: 0; }
.dep-nome { display: block; color: var(--azul-prof); font-size: .89rem; }
.dep-origem { display: block; color: var(--texto-claro); font-size: .73rem; }
.faq { padding: 96px 0; background: #fff; }
.faq .section-heading { margin: 0 auto 47px; text-align: center; }
.faq-list { border-top: 1px solid var(--borda); }
.faq-item { border-bottom: 1px solid var(--borda); }
.faq-item h3 { margin: 0; }
.faq-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 23px 5px;
	border: 0;
	background: transparent;
	color: var(--azul-prof);
	font: 600 1rem "Montserrat", sans-serif;
	text-align: left;
	cursor: pointer;
}
.faq-toggle span { font-size: 1.45rem; color: var(--turquesa); }
.faq-answer { padding: 0 36px 22px 5px; color: var(--texto-medio); }
.cta-banner {
	position: relative;
	overflow: hidden;
	padding: 88px 24px;
	background: linear-gradient(135deg, var(--turquesa), var(--azul-medio) 60%, var(--azul-prof));
	color: #fff;
	text-align: center;
}
.cta-circle { position: absolute; border: 1px solid rgba(255, 255, 255, .14); border-radius: 50%; }
.cta-circle-one { width: 420px; height: 420px; top: -220px; left: -110px; }
.cta-circle-two { width: 520px; height: 520px; right: -180px; bottom: -330px; }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { margin-bottom: 17px; font-family: "Playfair Display", serif; font-size: clamp(2.1rem, 4vw, 3.25rem); }
.cta-content p { max-width: 600px; margin: 0 auto 34px; color: rgba(255, 255, 255, .86); }

/* Footer */
.site-footer { padding: 77px 0 0; background: var(--texto-escuro); color: rgba(255, 255, 255, .66); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.45fr; gap: 54px; padding-bottom: 56px; }
.footer-title {
	margin-bottom: 17px;
	color: #fff;
	font-family: "Playfair Display", serif;
	font-size: 1.65rem;
}
.footer-brand p { max-width: 325px; color: rgba(255, 255, 255, .58); font-size: .84rem; }
.footer-heading { margin-bottom: 19px; color: #fff; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li, .site-footer p { margin: 0 0 12px; font-size: .83rem; }
.site-footer a:hover { color: var(--turquesa-claro); }
.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 0 25px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	color: rgba(255, 255, 255, .47);
	font-size: .74rem;
}
.mobile-whatsapp { display: none; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .68s ease, transform .68s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
	.primary-nav { gap: 20px; }
	.passeios-grid { grid-template-columns: repeat(2, 1fr); }
	.dif-grid { grid-template-columns: repeat(2, 1fr); }
	.gallery-grid { grid-template-columns: repeat(3, 1fr); }
	.footer-grid { grid-template-columns: 1.35fr 1fr 1fr; }
	.footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
	.admin-bar .site-header { top: 46px; }
	.container { width: min(100% - 40px, 680px); }
	.menu-toggle { display: block; }
	.primary-nav {
		position: fixed;
		top: 76px;
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 20px;
		background: #fff;
		box-shadow: 0 18px 35px rgba(5, 20, 58, .12);
	}
	.admin-bar .primary-nav { top: 122px; }
	.primary-nav.open { display: flex; }
	.primary-nav > a:not(.nav-button) { padding: 14px 6px; }
	.nav-button { margin-top: 10px; }
	.hero-frame { padding-top: 124px; padding-bottom: 76px; }
	.search-glass { flex-direction: column; align-items: stretch; padding: 22px; text-align: center; }
	.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 46px; }
	.hero-stats i { display: none; }
	.about-grid { grid-template-columns: 1fr; gap: 52px; }
	.about-badge { left: 18px; }
	.transfer-head { display: none; }
	.transfer-table { display: grid; gap: 16px; border: 0; box-shadow: none; background: transparent; }
	.transfer-row {
		display: flex;
		flex-wrap: wrap;
		gap: 10px 16px;
		padding: 20px;
		border: 1px solid var(--borda);
		border-radius: var(--radius-sm);
		box-shadow: var(--sombra-card);
	}
	.transfer-row h3 { flex-basis: 100%; }
	.transfer-row .button { flex-basis: 100%; margin-top: 8px; }
	.destinos-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 220px); }
	.dest-item:first-child { grid-column: span 2; grid-row: auto; }
	.dep-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
	.container { width: min(100% - 32px, 480px); }
	.brand, .site-logo { min-width: auto; }
	.brand-image, .site-logo img, .logo img { height: 46px; max-width: 150px; }
	.site-logo .brand-mark { width: 40px; height: 40px; max-width: 40px; }
	.brand-name { font-size: 1.16rem; }
	.brand small { font-size: .52rem; letter-spacing: .11em; }
	.hero { min-height: 100svh; }
	.hero h1 { font-size: clamp(2.25rem, 12vw, 2.7rem); }
	.hero-tag { padding-inline: 13px; font-size: .63rem; }
	.hero-wave { height: 47px; }
	.about, .destinos, .diferenciais, .depoimentos, .faq { padding: 72px 0; }
	.passeios { padding-top: 72px; }
	.passeios-private { padding-top: 16px; padding-bottom: 72px; }
	.transfers, .gallery { padding: 72px 0; }
	.passeios-grid, .dif-grid, .gallery-grid { grid-template-columns: 1fr; }
	.gallery-grid img { height: 236px; }
	.destinos-grid { display: block; }
	.dest-item { height: 236px; margin-bottom: 14px; }
	.footer-grid { grid-template-columns: 1fr; gap: 31px; }
	.footer-grid > div:last-child { grid-column: auto; }
	.footer-bottom { flex-direction: column; }
	.mobile-whatsapp {
		position: fixed;
		z-index: 950;
		right: 16px;
		bottom: 16px;
		display: block;
		padding: 13px 19px;
		border-radius: 50px;
		background: #25d366;
		color: #fff;
		font-size: .77rem;
		font-weight: 700;
		box-shadow: 0 10px 28px rgba(18, 140, 126, .34);
	}
}
