/* ============================================================
   MILHAS E RUMOS — Landing Page
   Paleta: azul-marinho profundo + dourado (luxo)
   ============================================================ */

:root {
  --navy: #0a1830;
  --navy-deep: #060f1f;
  --navy-soft: #122647;
  --gold: #c9a45c;
  --gold-light: #e6cf9a;
  --gold-dark: #a9873f;
  --cream: #f8f4ec;
  --white: #ffffff;
  --ink: #22303f;
  --muted: #5b6b7d;
  --whatsapp: #25d366;
  --shadow-soft: 0 20px 60px rgba(6, 15, 31, 0.12);
  --shadow-gold: 0 12px 40px rgba(201, 164, 92, 0.35);
  --radius: 18px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

section { scroll-margin-top: 90px; }

/* ---------- Tipografia ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.4rem;
}

.section-title em,
.hero-title em,
.cta-content em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-title.center,
.eyebrow.center,
.section-text.center { text-align: center; }
.section-text.center { margin-left: auto; margin-right: auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.section-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease,
              background-color 0.35s ease,
              color 0.35s ease;
}

.btn svg { width: 18px; height: 18px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 50px rgba(201, 164, 92, 0.5);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.btn-lg { padding: 1.15rem 2.6rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.site-header.scrolled {
  background: rgba(6, 15, 31, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  padding: 0.6rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: flex; align-items: center; gap: 0.75rem; }

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.6);
  transition: transform 0.4s ease;
}

.brand:hover .brand-logo { transform: rotate(-8deg) scale(1.06); }

.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.brand-text em { color: var(--gold); font-style: italic; }

.main-nav { display: flex; align-items: center; gap: 2rem; }

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.main-nav a:not(.nav-cta):hover { color: var(--gold-light); }
.main-nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep) !important;
  font-weight: 500;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}

.menu-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: -10% 0;
  background: url('https://images.unsplash.com/photo-1514282401047-d79a71a590e8?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
  transform: scale(1.05);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 15, 31, 0.88) 0%, rgba(6, 15, 31, 0.55) 45%, rgba(6, 15, 31, 0.15) 100%),
              linear-gradient(to top, rgba(6, 15, 31, 0.75) 0%, transparent 35%);
}

.hero-content { position: relative; z-index: 2; padding: 8rem 0 6rem; }

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  width: 48px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.6rem;
  max-width: 15ch;
}

.hero-title em { color: var(--gold-light); }

.hero-subtitle {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2.6rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Elementos flutuantes */
.float-icon,
.float-dot { position: absolute; z-index: 1; pointer-events: none; }

.float-plane {
  width: 54px; height: 54px;
  color: rgba(230, 207, 154, 0.85);
  top: 22%; right: 12%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  animation: floatPlane 9s ease-in-out infinite;
}

.float-dot {
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.5);
}

.dot-1 { width: 130px; height: 130px; bottom: 16%; right: 22%; animation: floatSlow 11s ease-in-out infinite; }
.dot-2 { width: 70px; height: 70px; bottom: 26%; right: 8%; animation: floatSlow 8s ease-in-out infinite reverse; }
.dot-3 { width: 26px; height: 26px; background: rgba(201, 164, 92, 0.35); border: 0; top: 32%; right: 12%; animation: floatSlow 7s ease-in-out infinite; }

@keyframes floatPlane {
  0%, 100% { transform: translate(0, 0) rotate(10deg); }
  50% { transform: translate(-26px, -30px) rotate(16deg); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

/* Indicador de scroll */
.scroll-hint {
  position: absolute;
  left: 50%; bottom: 2.2rem;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  z-index: 2;
}

.scroll-hint span {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--gold-light);
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Seções ---------- */
.section { padding: 7.5rem 0; }

/* Benefícios */
.benefits { background: var(--cream); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

.benefits-media { position: relative; }

.benefits-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.benefits-media::before {
  content: '';
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.media-badge {
  position: absolute;
  left: -1.6rem; bottom: 2.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(6, 15, 31, 0.35);
  animation: floatSlow 6s ease-in-out infinite;
}

.media-badge svg { width: 30px; height: 30px; color: var(--gold); }
.media-badge span { font-size: 0.82rem; line-height: 1.4; color: rgba(255,255,255,0.75); }
.media-badge strong { color: var(--gold-light); font-weight: 500; }

.benefit-list { list-style: none; margin-top: 1rem; }

.benefit-list li {
  display: flex;
  gap: 1.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(10, 24, 48, 0.08);
}

.benefit-list li:last-child { border-bottom: 0; }

.benefit-icon {
  flex: 0 0 52px;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201, 164, 92, 0.18), rgba(201, 164, 92, 0.06));
  border: 1px solid rgba(201, 164, 92, 0.35);
  color: var(--gold-dark);
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.benefit-icon svg { width: 26px; height: 26px; }

.benefit-list li:hover .benefit-icon { transform: translateY(-4px) rotate(-4deg); }

.benefit-list h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.benefit-list p { font-size: 0.94rem; color: var(--muted); }

/* Serviços */
.services { background: var(--navy); position: relative; overflow: hidden; }

.services::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.14), transparent 65%);
  animation: floatSlow 12s ease-in-out infinite;
}

.services .section-title,
.services .section-text { color: var(--white); }
.services .section-title em { color: var(--gold-light); }
.services .eyebrow { color: var(--gold); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 3.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s ease,
              border-color 0.45s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 164, 92, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 164, 92, 0.25);
}

.service-img { height: 190px; overflow: hidden; }

.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

.service-card:hover .service-img img { transform: scale(1.1); filter: brightness(1.08); }

.service-body { padding: 1.6rem 1.5rem 1.8rem; }

.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.55rem;
}

.service-body p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.68); margin-bottom: 1.2rem; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-link:hover { gap: 0.85rem; color: var(--gold); }

/* Destinos */
.destinations { background: var(--cream); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1.2rem;
  margin-top: 3.2rem;
}

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(6, 15, 31, 0.12);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.dest-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 26px 60px rgba(6, 15, 31, 0.3);
}

.dest-large { grid-column: span 2; grid-row: span 2; }
.dest-wide { grid-column: span 2; }

.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}

.dest-card:hover img { transform: scale(1.12); filter: brightness(1.05); }

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 15, 31, 0.82) 0%, rgba(6, 15, 31, 0.15) 45%, transparent 70%);
  transition: opacity 0.5s ease;
}

.dest-card figcaption {
  position: absolute;
  left: 1.4rem; right: 1.4rem; bottom: 1.2rem;
  z-index: 2;
  transform: translateY(6px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.dest-card:hover figcaption { transform: translateY(-4px); }

.dest-card figcaption::before {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--gold);
  margin-bottom: 0.6rem;
  transition: width 0.5s ease 0.05s;
}

.dest-card:hover figcaption::before { width: 44px; }

.dest-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}

.dest-card p {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.dest-cta { text-align: center; margin-top: 3rem; }

/* Depoimentos */
.testimonials { background: linear-gradient(180deg, var(--cream) 0%, #efe8da 100%); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem 2.1rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.6rem; left: 1.4rem;
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(201, 164, 92, 0.25);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(6, 15, 31, 0.16);
}

.stars { color: var(--gold); letter-spacing: 0.25em; font-size: 0.9rem; margin-bottom: 1.1rem; }

.quote {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.testimonial-card footer strong {
  display: block;
  font-weight: 500;
  color: var(--navy);
}

.testimonial-card footer span {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* CTA Final */
.cta-final {
  position: relative;
  padding: 9rem 0;
  overflow: hidden;
  text-align: center;
  background: var(--navy-deep);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 15, 31, 0.82), rgba(6, 15, 31, 0.68));
}

.cta-content { position: relative; z-index: 2; }

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.cta-content p { color: rgba(255, 255, 255, 0.8); font-size: 1.08rem; margin-bottom: 2.4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.72); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding: 5rem 0 3.5rem;
}

.footer-brand img {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.5);
  margin-bottom: 1.2rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.4;
  margin-bottom: 1.4rem;
}

.footer-social { display: flex; gap: 0.8rem; }

.footer-social a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

.footer-social svg { width: 19px; height: 19px; }

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}

.footer-nav a,
.footer-contact a,
.footer-contact p {
  display: block;
  font-size: 0.94rem;
  padding: 0.28rem 0;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-nav a:hover,
.footer-contact a:hover { color: var(--gold-light); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem 0;
  font-size: 0.82rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- Botão flutuante WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  z-index: 200;
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.45);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  animation: whatsPulse 2.4s ease-out infinite;
}

.whatsapp-float svg { width: 30px; height: 30px; }

.whatsapp-float:hover { transform: scale(1.12) rotate(6deg); }

@keyframes whatsPulse {
  0% { box-shadow: 0 12px 34px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 12px 34px rgba(37, 211, 102, 0.45), 0 0 0 22px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 34px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-plane, .float-dot, .media-badge, .whatsapp-float, .scroll-hint span { animation: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 992px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .benefits-media { max-width: 520px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .dest-large { grid-column: span 2; grid-row: span 1; }
  .dest-wide { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(6, 15, 31, 0.97);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.15rem; }
  .hero { min-height: 92vh; }
  .float-plane { width: 36px; height: 36px; top: 16%; right: 8%; }
  .dot-1, .dot-3 { display: none; }
  .section { padding: 5rem 0; }
  .media-badge { left: 0.8rem; }
  .benefits-media::before { inset: 1rem -0.8rem -0.8rem 1rem; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .dest-large, .dest-wide { grid-column: span 1; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; padding: 3.5rem 0 2.5rem; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .whatsapp-float { width: 54px; height: 54px; right: 1rem; bottom: 1rem; }
}
