/* ═══════════════════════════════════════════════
   REALIZE EXCLUSIVE TRAVELS — main.css
   Brand: #334d39 + #1E2F21 + #B8905A + #FFFFFF
   Fonts: Cormorant Garamond + DM Sans
═══════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ─── DESIGN TOKENS ─── */
:root {
  --green-deep:    #1E2F21;
  --green-brand:   #334d39;
  --green-mid:     #3e4940;
  --gold:          #B8905A;
  --gold-light:    #D4B080;
  --cream:         #F5F0E6;
  --warm-white:    #FAF8F4;
  --white:         #FFFFFF;
  --text-dark:     #1A2B1D;
  --text-mid:      #4D5E50;
  --text-muted:    #7A8C7D;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', sans-serif;

  --section-py:    clamp(5rem, 10vw, 8rem);
  --container-px:  clamp(1.5rem, 5vw, 4rem);
  --max-w:         1280px;

  --r-card:  20px;
  --r-pill:  100px;

  --shadow-sm: 0 2px 12px rgba(30,47,33,.07);
  --shadow-md: 0 8px 32px rgba(30,47,33,.11);
  --shadow-lg: 0 24px 64px rgba(30,47,33,.16);

  --ease:     cubic-bezier(.4,0,.2,1);
}

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ─── TYPOGRAPHY ─── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--text-dark);
}
.section-title em {
  font-style: italic;
  color: var(--green-brand);
  font-weight: 400;
}
.section-title.on-dark { color: var(--white); }
.section-title.on-dark em { color: var(--gold-light); }

.body-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
}
.gold-rule {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border: none;
  margin: 1.5rem 0;
  border-radius: 2px;
}
.gold-rule.center { margin-inline: auto; }
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .3s var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-brand);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(51,77,57,.32);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
  font-size: .9375rem;
  padding: 1rem 2.25rem;
}
.btn-wa:hover {
  background: #1eba57;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,.32);
}

/* ─── SCROLL REVEALS ─── */
.reveal-up, .reveal-left, .reveal-right, .reveal-fade, .reveal-scale {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-up    { transform: translateY(48px); }
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-fade  { transform: none; }
.reveal-scale { transform: scale(.94); }
.reveal-up.in, .reveal-left.in, .reveal-right.in,
.reveal-fade.in, .reveal-scale.in {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: .1s !important; }
.d2 { transition-delay: .2s !important; }
.d3 { transition-delay: .3s !important; }
.d4 { transition-delay: .4s !important; }
.d5 { transition-delay: .5s !important; }


/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.75rem var(--container-px);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  box-shadow: 0 1px 24px rgba(0,0,0,.07);
}
.header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo-img,
.logo-link .custom-logo {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .4s var(--ease);
}
.site-header.scrolled .logo-img,
.site-header.scrolled .logo-link .custom-logo { filter: none; }

.primary-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: rgba(255,255,255,.82);
  transition: color .3s;
  position: relative;
  padding-bottom: 3px;
}
.site-header.scrolled .nav-link { color: var(--text-mid); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.site-header.scrolled .nav-link:hover { color: var(--green-brand); }

.btn-wa-nav {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .6rem 1.3rem;
  border-radius: var(--r-pill);
  background: var(--green-brand);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: background .3s, transform .3s;
  flex-shrink: 0;
}
.btn-wa-nav:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background .4s, transform .3s, opacity .3s;
}
.site-header.scrolled .menu-toggle span { background: var(--green-brand); }
.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: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: hero-zoom 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(20,32,22,.82) 0%,
    rgba(51,77,57,.52) 45%,
    rgba(20,32,22,.74) 100%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--container-px);
  padding-top: clamp(8rem, 18vh, 12rem);
  padding-bottom: clamp(8rem, 16vh, 10rem);
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fade-up .9s .2s var(--ease) forwards;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  color: var(--white);
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.hero-line-1 {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 300;
  opacity: 0;
  animation: fade-up .9s .4s var(--ease) forwards;
}
.hero-line-em {
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: -.025em;
  line-height: .92;
  margin: .06em 0;
  opacity: 0;
  animation: fade-up .9s .55s var(--ease) forwards;
}
.hero-line-3 {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 300;
  opacity: 0;
  animation: fade-up .9s .7s var(--ease) forwards;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up .9s .88s var(--ease) forwards;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up .9s 1.02s var(--ease) forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 9rem;
  left: var(--container-px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  opacity: 0;
  animation: fade-up .9s 1.2s var(--ease) forwards;
}
.scroll-bar {
  width: 44px; height: 1px;
  background: rgba(255,255,255,.2);
  position: relative;
  overflow: hidden;
}
.scroll-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold-light);
  animation: scroll-scan 2.2s 1.4s ease-in-out infinite;
}
@keyframes scroll-scan {
  0%   { left: -100%; }
  100% { left: 120%; }
}

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,32,22,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(184,144,90,.18);
  padding: 1.6rem var(--container-px);
  opacity: 0;
  animation: fade-up .9s 1.35s var(--ease) forwards;
}
.stat {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: .25rem 1.5rem;
}
.stat-n {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  vertical-align: super;
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
  margin-top: .3rem;
}
.stat-sep {
  width: 1px;
  height: 3.5rem;
  background: rgba(255,255,255,.1);
}


/* ══════════════════════════════════════════════
   SOBRE NÓS
══════════════════════════════════════════════ */
.sobre {
  padding-block: var(--section-py);
  background: var(--warm-white);
}
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.sobre-img-col { position: relative; }
.sobre-img-wrap img {
  width: 100%;
  height: clamp(380px, 55vh, 580px);
  object-fit: cover;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-lg);
}
.sobre-badge {
  position: absolute;
  bottom: -1.75rem;
  right: -1.75rem;
  background: var(--green-brand);
  color: var(--white);
  border-radius: var(--r-card);
  padding: 1.5rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 115px;
}
.badge-n {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  display: block;
  line-height: 1;
}
.badge-t {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 400;
  opacity: .75;
  line-height: 1.4;
  margin-top: .25rem;
}
.sobre-text-col { padding-left: .5rem; }
.sobre-brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--green-brand);
  letter-spacing: .04em;
  margin-bottom: .5rem;
}
.diferenciais {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-block: 1.75rem 2.25rem;
}
.diferenciais li {
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: .875rem;
  line-height: 1.5;
}
.diferenciais li::before {
  content: '';
  display: block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23334d39' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}


/* ══════════════════════════════════════════════
   SERVIÇOS
══════════════════════════════════════════════ */
.servicos {
  padding-block: var(--section-py);
  background: var(--white);
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.servico-card {
  background: var(--warm-white);
  border-radius: var(--r-card);
  padding: 0;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Image at top of card */
.servico-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.servico-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  display: block;
}
.servico-card:hover .servico-img { transform: scale(1.06); }
.servico-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-brand);
  opacity: 0;
  transition: opacity .4s;
}
.servico-card:hover .servico-img-wrap::after { opacity: .25; }

/* Card body */
.servico-body {
  padding: 1.75rem 1.75rem 2rem;
}
.servico-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.servico-desc {
  font-family: var(--font-body);
  font-size: .875rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}
.servico-link {
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--green-brand);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  letter-spacing: .03em;
  transition: color .3s, gap .3s;
}
.servico-link svg { transition: transform .3s; }
.servico-link:hover svg,
.servico-card:hover .servico-link svg { transform: translateX(4px); }
.servico-card:hover .servico-link { color: var(--green-deep); }


/* ══════════════════════════════════════════════
   VIAGENS REALIZADAS — CAROUSEL 9:16
══════════════════════════════════════════════ */
.viagens {
  padding-block: var(--section-py);
  background: var(--green-deep);
  overflow: hidden;
}
.viagens .section-eyebrow { color: var(--gold); }
.viagens .section-title { color: var(--white); }
.viagens .section-title em { color: var(--gold-light); }

.carousel-outer {
  position: relative;
  margin-top: 2.5rem;
}
.carousel-track {
  display: flex;
  gap: 1.25rem;
  padding-inline: var(--container-px);
  padding-bottom: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.dragging { cursor: grabbing; scroll-behavior: auto; }

.trip-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: clamp(190px, 27vw, 295px);
  aspect-ratio: 9 / 16;
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.trip-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.trip-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.trip-card:hover .trip-img { transform: scale(1.06); }
.trip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,25,17,.92) 0%,
    rgba(15,25,17,.3) 45%,
    transparent 70%
  );
}
.trip-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem;
}
.trip-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(184,144,90,.14);
  border: 1px solid rgba(184,144,90,.28);
  border-radius: var(--r-pill);
  padding: .2rem .75rem;
  margin-bottom: .875rem;
}
.trip-dest {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: .3rem;
}
.trip-country {
  font-family: var(--font-body);
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .3s, transform .3s;
  backdrop-filter: blur(8px);
  z-index: 10;
}
.carousel-btn:hover {
  background: var(--green-brand);
  border-color: var(--green-brand);
  transform: translateY(-60%) scale(1.1);
}
.carousel-btn.prev { left: calc(var(--container-px) - 1.5rem); }
.carousel-btn.next { right: calc(var(--container-px) - 1.5rem); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
  padding-bottom: .5rem;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, width .35s var(--ease);
}
.dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 3px;
}


/* ══════════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════════ */
.depoimentos {
  padding-block: var(--section-py);
  background: var(--cream);
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.depo-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.depo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.depo-mark {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: .6;
  color: var(--green-brand);
  opacity: .09;
  position: absolute;
  top: 1.25rem; left: 1.75rem;
  pointer-events: none;
  font-weight: 700;
  user-select: none;
}
.depo-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.5rem;
}
.depo-stars svg { fill: var(--gold); }
.depo-text {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}
.depo-author {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream);
}
.depo-author strong {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-dark);
}
.depo-author span {
  font-family: var(--font-body);
  font-size: .8125rem;
  color: var(--text-muted);
}


/* ══════════════════════════════════════════════
   CTA WHATSAPP
══════════════════════════════════════════════ */
.cta-wa {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 12vw, 9rem);
  background: var(--green-brand);
  text-align: center;
}
.cta-wa-bg {
  position: absolute;
  inset: 0;
}
.cta-wa-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .1;
}
.cta-wa-grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}
.cta-wa-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--container-px);
}
.cta-wa-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.cta-wa-title em {
  font-style: italic;
  color: var(--gold-light);
}
.cta-wa-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 2.75rem;
  max-width: 520px;
  margin-inline: auto;
}


/* ══════════════════════════════════════════════
   LOCALIZAÇÃO
══════════════════════════════════════════════ */
.localizacao {
  padding-block: var(--section-py);
  background: var(--white);
}
.loc-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}
.loc-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}
.loc-item {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
}
.loc-item-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(51,77,57,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-item-icon svg { stroke: var(--green-brand); }
.loc-item-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .3rem;
}
.loc-item-text span,
.loc-item-text a {
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.loc-item-text a:hover { color: var(--green-brand); }
.loc-map-col {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  height: clamp(420px, 60vh, 580px);
  box-shadow: var(--shadow-lg);
}
.loc-map-col iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--green-deep);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 5rem var(--container-px) 4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo-img,
.footer-logo-link .custom-logo {
  height: 80px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}
.footer-logo-link { display: inline-block; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: .975rem;
  font-style: italic;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.footer-social {
  display: flex;
  gap: .75rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background .3s, color .3s, border-color .3s;
}
.footer-social a:hover {
  background: var(--green-brand);
  border-color: var(--green-brand);
  color: var(--white);
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links li + li { margin-top: .625rem; }
.footer-links a {
  font-family: var(--font-body);
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color .3s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.footer-contact-info p,
.footer-contact-info a {
  font-family: var(--font-body);
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}
.footer-contact-info a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1.5rem var(--container-px);
}
.footer-legal,
.footer-credit {
  font-family: var(--font-body);
  font-size: .75rem;
  color: rgba(255,255,255,.28);
}
.footer-credit a {
  color: rgba(255,255,255,.45);
  transition: color .3s;
}
.footer-credit a:hover { color: var(--white); }


/* ══════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 200;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-ping 2.2s ease-out infinite;
}
@keyframes wa-ping {
  0%   { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.75); opacity: 0; }
}


/* ══════════════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════════════ */
@media (max-width: 920px) {
  .primary-nav {
    position: fixed;
    inset: 0;
    background: var(--green-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
    z-index: 99;
  }
  .primary-nav.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-list {
    flex-direction: column;
    gap: 2.25rem;
    text-align: center;
  }
  .nav-link {
    font-family: var(--font-display) !important;
    font-size: 2.75rem !important;
    font-weight: 300 !important;
    color: var(--white) !important;
    letter-spacing: .02em !important;
  }
  .btn-wa-nav { display: none; }
  .menu-toggle { display: flex; z-index: 100; }
}

/* ── TABLET ── */
@media (max-width: 1024px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ── TABLET/MOBILE ── */
@media (max-width: 768px) {
  .hero-scroll-cue { display: none; }

  /* Hero padding: mínimo 8.5rem p/ limpar navbar (~120px) */
  .hero-content {
    padding-top: clamp(8.5rem, 22vh, 11rem);
    padding-bottom: clamp(7rem, 14vh, 9rem);
  }

  /* Hero stats: compacto */
  .hero-stats { padding: 1rem var(--container-px); }
  .stat { max-width: none; flex: 1 1 80px; padding: .5rem .75rem; }
  .stat-n { font-size: 1.875rem; }
  .stat-suffix { font-size: 1.125rem; }
  .stat-label { font-size: .62rem; }
  .stat-sep { height: 2.5rem; }

  /* Sobre */
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-text-col { padding-left: 0; padding-top: 3rem; }
  .sobre-badge { right: 1rem; bottom: -1rem; }
  .sobre-img-wrap img { height: clamp(280px, 55vw, 420px); }

  /* Depoimentos */
  .depoimentos-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  /* Localização */
  .loc-inner { grid-template-columns: 1fr; }
  .loc-map-col { height: 340px; order: 2; }
  .loc-info-col { order: 1; }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  :root { --section-py: clamp(3rem, 8vw, 4.5rem); }

  /* Hero */
  .hero-line-1  { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-line-em { font-size: clamp(3rem, 16vw, 4.5rem); }
  .hero-sub { font-size: .9375rem; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  /* Hero stats: 3 colunas compactas */
  .stat { flex: 1; padding: .5rem .4rem; }
  .stat-n { font-size: 1.5rem; }
  .stat-sep { height: 2rem; }

  /* WA float: acima da barra de stats (~80px) */
  .wa-float { bottom: 5.5rem; right: 1.25rem; width: 50px; height: 50px; }

  /* Sobre badge: dentro da foto, não vaza */
  .sobre-badge { right: .75rem; bottom: .75rem; padding: 1rem 1.25rem; }
  .badge-n { font-size: 2rem; }

  /* Serviços — carrossel horizontal (sem hover transform) */
  .servico-card:hover { transform: none; box-shadow: none; }
  .servicos-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding-inline: var(--container-px);
    padding-bottom: 1rem;
    margin-inline: calc(-1 * var(--container-px));
    scroll-padding-inline: 50%;
  }
  .servicos-grid::-webkit-scrollbar { display: none; }
  .servico-card {
    flex-shrink: 0;
    width: 78vw;
    max-width: 300px;
    scroll-snap-align: center;
  }

  /* Destinos */
  .trip-card { width: clamp(190px, 72vw, 240px); }
  .carousel-btn { display: none; }

  /* Depoimentos */
  .depo-card { padding: 1.5rem 1.25rem; }

  /* Localização */
  .loc-map-col { height: 260px; }

  /* Footer: brand e contato largura total, nav+serviços lado a lado */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.5rem;
    padding: 2.5rem var(--container-px) 2rem;
  }
  .footer-top > .footer-brand,
  .footer-top > address { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .footer-logo-img,
  .footer-logo-link .custom-logo { height: 56px; }
  .footer-col-title { font-size: .65rem; margin-bottom: .625rem; }
  .footer-links li + li { margin-top: .4rem; }
  .footer-links a { font-size: .8125rem; }
}

/* ── MOBILE PEQUENO (<400px) ── */
@media (max-width: 400px) {
  :root { --container-px: 1.25rem; }

  .hero-content { padding-top: 8.5rem; }
  .hero-line-1  { font-size: 1.875rem; }
  .hero-line-em { font-size: clamp(2.5rem, 15vw, 3.25rem); }

  .stat-n { font-size: 1.25rem; }
  .stat-suffix { font-size: .9rem; }
  .stat-label { font-size: .58rem; letter-spacing: .07em; }

  .nav-link { font-size: 2.125rem !important; }
  .btn { padding: .8rem 1.5rem; font-size: .8125rem; }

  .servico-card { width: 85vw; }
  .trip-card { width: clamp(170px, 78vw, 210px); }

  .footer-top { grid-template-columns: 1fr; }
  .footer-top > .footer-brand,
  .footer-top > address { grid-column: unset; }
}
