/* ============================================================
   TZ Viagens
   lencois-maranhenses/style.css
   Landing page do destino Lençóis Maranhenses
   ============================================================ */

/* ─────────────────────────────────────────
   0. RESET & CUSTOM PROPERTIES
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Cores da ID Visual TZ Viagens */
  --navy:         #0E2A59;
  --navy-mid:     #163A72;
  --navy-card:    #1C477F;
  --orange:       #F31B2F;
  --orange-light: #FF6B78;
  --orange-dim:   rgba(243,27,47,0.15);
  --sand:         #F31B2F;
  --sand-light:   #FF6B78;
  --sand-dim:     rgba(243,27,47,0.12);
  --green-wa:     #25D366;
  --green-dark:   #128C7E;
  --bg-light:     #F5F6FA;
  --text-muted:   #8A9BBF;
  --white:        #ffffff;

  --font:      'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-accent: 'Instrument Sans', 'Helvetica Neue', sans-serif;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 8px 40px rgba(0,0,0,0.22);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─────────────────────────────────────────
   ACESSIBILIDADE
───────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  padding: .5rem 1rem; background: var(--orange); color: var(--navy);
  font-weight: 700; border-radius: var(--radius-sm); z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ─────────────────────────────────────────
   TIPOGRAFIA HELPERS
───────────────────────────────────────── */
.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sand); margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem); font-weight: 900;
  line-height: 1.15; margin-bottom: .9rem;
}
.section-title .accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 600;
  color: var(--sand);
}
.section-sub {
  font-size: 1rem; color: rgba(255,255,255,.72); max-width: 520px;
  margin-bottom: 3rem; line-height: 1.65;
}

/* ─────────────────────────────────────────
   1. BARRA TOPO
───────────────────────────────────────── */
.top-bar {
  background: linear-gradient(90deg, #A6111F, var(--orange), #A6111F);
  background-size: 200% 100%;
  animation: topShine 5s ease infinite;
  text-align: center; padding: .55rem 1rem;
  font-size: .85rem; font-weight: 500; color: var(--white);
  display: flex; align-items: center; justify-content: center; gap: .75rem;
}
@keyframes topShine {
  0%   { background-position: 100% 0; }
  50%  { background-position: 0 0; }
  100% { background-position: 100% 0; }
}
.top-bar-icon { font-size: 1rem; }

/* ─────────────────────────────────────────
   2. HERO
───────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 6rem 0 5rem; overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1650623598032-4fddce25b34f?w=1400&h=900&fit=crop&q=85') center/cover no-repeat;
  animation: heroPan 22s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.05) translateX(0); }
  to   { transform: scale(1.05) translateX(-3%); }
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(14,42,89,0.96) 0%,
    rgba(14,42,89,0.80) 45%,
    rgba(14,42,89,0.45) 100%
  );
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 4rem; align-items: center;
}

/* — Location pill — */
.hero-location {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  color: var(--sand-light); margin-bottom: 1.25rem;
}
.hero-location-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sand); animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.7); }
}

/* — Título — */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900;
  line-height: 1.08; margin-bottom: 1.25rem; letter-spacing: -.02em;
}
.hero-title-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 600;
  color: var(--sand);
}

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.78);
  max-width: 500px; margin-bottom: 1.75rem; line-height: 1.65;
}

/* — Pills — */
.hero-pills {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.25rem;
}
.pill {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 500;
  padding: .35rem .85rem; border-radius: 100px;
}

/* — CTAs — */
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--sand); color: var(--navy);
  font-size: 1rem; font-weight: 800; padding: .95rem 2rem;
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(243,27,47,.35);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary:hover {
  background: var(--sand-light); transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(243,27,47,.45);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9); font-size: 1rem; font-weight: 600;
  padding: .95rem 1.75rem; border-radius: 100px;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--sand); background: var(--sand-dim); color: var(--sand-light); }

/* — Prova social mini — */
.hero-proof { display: flex; align-items: center; gap: 1rem; }
.proof-avatars { display: flex; }
.proof-av {
  width: 32px; height: 32px; border-radius: 50%;
  font-size: .7rem; font-weight: 800; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--navy); margin-left: -8px;
}
.proof-av:first-child { margin-left: 0; }
.proof-text { font-size: .82rem; color: rgba(255,255,255,.75); }
.proof-stars { color: var(--sand); font-size: .9rem; margin-bottom: .1rem; }
.proof-text strong { color: var(--white); }

/* ─────────────────────────────────────────
   DEST BADGE (hero aside)
───────────────────────────────────────── */
.hero-aside { position: relative; }

.dest-badge {
  background: var(--navy-card); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
  animation: floatCard 7s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

.dest-badge-img {
  height: 180px;
  background:
    linear-gradient(180deg, #5a9fc8 0%, #8ac8e0 30%, #c8dde8 42%, #ddd0a0 55%, #e8d080 72%, #c8a030 100%);
  background-size: cover; background-position: center;
}

.dest-badge-body { padding: 1.25rem 1.5rem 1.5rem; }
.dest-badge-tag {
  font-size: .75rem; font-weight: 700; color: var(--sand);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: .4rem;
}
.dest-badge-name { font-size: 1.1rem; font-weight: 800; margin-bottom: .6rem; }
.dest-badge-info {
  display: flex; gap: .75rem; font-size: .78rem; color: var(--text-muted);
  margin-bottom: 1rem; flex-wrap: wrap;
}
.dest-badge-price-label { font-size: .78rem; color: var(--text-muted); }
.dest-badge-price {
  font-size: 1.8rem; font-weight: 900; color: var(--sand); line-height: 1.1;
  margin-bottom: 1rem;
}
.dest-badge-price span { font-size: .8rem; font-weight: 500; color: var(--text-muted); }
.dest-badge-cta {
  display: block; text-align: center;
  background: var(--sand); color: var(--navy);
  font-size: .9rem; font-weight: 800; padding: .8rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: background .2s, transform .2s;
}
.dest-badge-cta:hover { background: var(--sand-light); transform: translateY(-1px); }

/* — Stickers flutuantes — */
.hero-sticker {
  position: absolute; display: flex; align-items: center; gap: .6rem;
  background: rgba(16,37,69,.95); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm);
  padding: .6rem .9rem; font-size: .78rem; box-shadow: var(--shadow-sm);
  white-space: nowrap; animation: stickerAppear .5s ease forwards; opacity: 0;
}
.hero-sticker--1 { bottom: 5rem; right: -2.5rem; animation-delay: 1.2s; }
.hero-sticker--2 { top: 4.5rem; right: -2rem; animation-delay: 2.5s; }
@keyframes stickerAppear {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-sticker > span { font-size: 1.1rem; }
.hero-sticker strong { display: block; font-size: .82rem; }
.hero-sticker div > div { color: var(--text-muted); font-size: .72rem; }

/* — Scroll hint — */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  color: rgba(255,255,255,.35); z-index: 1; animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(6px); }
}
.scroll-hint-line {
  width: 1px; height: 32px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.3));
}

/* ─────────────────────────────────────────
   3. STATS
───────────────────────────────────────── */
.stats {
  background: linear-gradient(90deg, rgba(243,27,47,.15), rgba(243,27,47,.08), rgba(243,27,47,.15));
  border-top: 1px solid rgba(243,27,47,.15); border-bottom: 1px solid rgba(243,27,47,.15);
  padding: 2.5rem 0;
}
.stats-grid { display: flex; align-items: center; justify-content: center; }
.stat-item { flex: 1; text-align: center; padding: 1rem; }
.stat-num { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--sand); line-height: 1; margin-bottom: .3rem; }
.stat-label { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ─────────────────────────────────────────
   4. POR QUE VISITAR
───────────────────────────────────────── */
.why { padding: 6rem 0; background: var(--navy-mid); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3.5rem; }

.why-visual { position: relative; display: grid; width: 100%; grid-template-columns: 1fr 1fr; grid-template-rows: 260px 160px; gap: .75rem; }
.why-img { border-radius: var(--radius); overflow: hidden; background-size: cover; background-position: center; }
.why-img--main {
  grid-column: 1 / -1; grid-row: 1;
  background: url('https://images.unsplash.com/photo-1701221258513-7f4c7092b6a0?w=800&h=520&fit=crop&q=80') center/cover no-repeat;
}
.why-img--sm1 {
  background: url('https://images.unsplash.com/photo-1602587557627-1281a7b5a9a2?w=400&h=320&fit=crop&q=80') center/cover no-repeat;
}
.why-img--sm2 {
  background: url('https://images.unsplash.com/photo-1650623598274-dd6aa7f5331b?w=400&h=320&fit=crop&q=80') center/cover no-repeat;
}

.why-content { display: flex; flex-direction: column; gap: 1.75rem; }
.why-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; margin-top: .1rem; }
.why-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: var(--white); }
.why-item p  { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ─────────────────────────────────────────
   5. EXPERIÊNCIAS
───────────────────────────────────────── */
.experiences { padding: 6rem 0; background: var(--navy); }

.exp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto;
  gap: 1.25rem; margin-top: 3.5rem;
}

.exp-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--navy-card); border: 1px solid rgba(255,255,255,.07);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(243,27,47,.25); }
.exp-card--large { grid-column: 1 / 3; display: grid; grid-template-columns: 1.5fr 1fr; }
.exp-card--large .exp-img { height: 100%; min-height: 220px; }

.exp-img {
  height: 180px; background-size: cover; background-position: center;
  transition: transform .5s;
}
.exp-card:hover .exp-img { transform: scale(1.04); }

/* Imagens das experiências */
.exp-img--trek   {
  background: url('https://images.unsplash.com/photo-1679338585193-fe2edb9f04a4?w=600&h=360&fit=crop&q=80') center/cover no-repeat;
}
.exp-img--lagoa  {
  background: url('https://images.unsplash.com/photo-1650623598274-dd6aa7f5331b?w=600&h=360&fit=crop&q=80') center/cover no-repeat;
}
.exp-img--barco  {
  background: url('https://images.unsplash.com/photo-1528384171234-5a844dfc0fd7?w=600&h=360&fit=crop&q=80') center/cover no-repeat;
}
.exp-img--sunset {
  background: url('https://images.unsplash.com/photo-1650623598066-235c97af15c7?w=600&h=360&fit=crop&q=80') center/cover no-repeat;
}
.exp-img--buggy  {
  background: url('https://images.unsplash.com/photo-1695878868496-fcbd6ef47f57?w=600&h=360&fit=crop&q=80') center/cover no-repeat;
}

.exp-body { padding: 1.25rem 1.5rem 1.5rem; }
.exp-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--sand);
  background: var(--sand-dim); padding: .3rem .7rem;
  border-radius: 100px; margin-bottom: .65rem;
}
.exp-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.exp-body p  { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.55; }

/* ─────────────────────────────────────────
   6. MELHOR ÉPOCA
───────────────────────────────────────── */
.season { padding: 6rem 0; background: var(--navy-mid); }
.season-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.season .section-title { color: var(--white); }

.season-months {
  display: flex; gap: 1.25rem; align-items: flex-end;
  margin: 2rem 0 1.75rem; height: 120px;
}
.month-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.month-name { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.6); text-align: center; white-space: nowrap; }
.month-bar {
  flex: 1; width: 100%; background: rgba(255,255,255,.07);
  border-radius: 6px 6px 0 0; display: flex; align-items: flex-end;
}
.month-fill {
  width: 100%; background: rgba(255,255,255,.18);
  border-radius: 6px 6px 0 0;
  transition: height .6s ease;
}
.month-fill--peak { background: linear-gradient(to top, var(--sand), var(--orange-light)); }
.month-label { font-size: .72rem; color: var(--text-muted); text-align: center; line-height: 1.3; }
.month--peak .month-label { color: var(--sand); font-weight: 700; }

.season-tip {
  display: flex; gap: .85rem; align-items: flex-start;
  background: var(--sand-dim); border: 1px solid rgba(243,27,47,.2);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
}
.season-tip-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.season-tip p { font-size: .88rem; color: rgba(255,255,255,.8); line-height: 1.55; }
.season-tip strong { color: var(--sand-light); }

.season-visual { position: relative; }
.season-img {
  height: 300px; border-radius: var(--radius);
  background: url('https://images.unsplash.com/photo-1679338585193-fe2edb9f04a4?w=700&h=600&fit=crop&q=80') center/cover no-repeat;
  margin-bottom: 1.25rem;
}

.season-card {
  background: var(--navy-card); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 1.5rem;
}
.season-card-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.season-card-title { font-size: .9rem; font-weight: 700; margin-bottom: 1rem; color: var(--white); }

.season-card-dates { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.5rem; }
.date-item { display: flex; align-items: center; gap: .65rem; font-size: .88rem; color: rgba(255,255,255,.8); }
.date-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.date-dot--green { background: var(--green-wa); }
.date-dot--orange { background: var(--orange); }

.season-card-btn {
  display: block; text-align: center;
  background: var(--sand); color: var(--navy);
  font-size: .9rem; font-weight: 800; padding: .8rem;
  border-radius: var(--radius-sm); transition: background .2s;
}
.season-card-btn:hover { background: var(--sand-light); }

/* ─────────────────────────────────────────
   7. O QUE ESTÁ INCLUSO
───────────────────────────────────────── */
.package { padding: 6rem 0; background: var(--navy); }

.package-grid { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; margin-top: 3.5rem; }

.package-col-title {
  font-size: 1rem; font-weight: 700; color: var(--sand); margin-bottom: 1.5rem;
}
.package-list { display: flex; flex-direction: column; gap: .9rem; }
.package-list li {
  display: flex; align-items: center; gap: .85rem;
  font-size: .95rem; color: rgba(255,255,255,.88); line-height: 1.4;
}
.check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(37,211,102,.15); color: var(--green-wa);
  font-size: .75rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.price-card {
  background: linear-gradient(145deg, var(--navy-card), rgba(18,32,64,.9));
  border: 1px solid rgba(243,27,47,.2); border-radius: 20px;
  padding: 2rem; text-align: center;
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
  position: sticky; top: 2rem;
}
.price-card-dest { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sand); margin-bottom: .25rem; }
.price-card-detail { font-size: .8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.price-card-from { font-size: .8rem; color: var(--text-muted); }
.price-card-val { font-size: 3rem; font-weight: 900; color: var(--sand); line-height: 1; margin: .25rem 0; }
.price-card-pp { font-size: .82rem; color: var(--text-muted); margin-bottom: .5rem; }
.price-card-obs { font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 1.75rem; }

.price-card-cta {
  display: block; background: var(--sand); color: var(--navy);
  font-size: 1rem; font-weight: 800; padding: 1rem;
  border-radius: var(--radius-sm); margin-bottom: 1rem;
  transition: background .2s, transform .2s;
}
.price-card-cta:hover { background: var(--sand-light); transform: translateY(-1px); }
.price-card-guarantee { font-size: .78rem; color: var(--text-muted); }

/* ─────────────────────────────────────────
   8. DEPOIMENTOS
───────────────────────────────────────── */
.testimonials { padding: 6rem 0; background: var(--navy-mid); }

.google-badge {
  display: inline-flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: .9rem 1.25rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.google-icon { width: 28px; height: 28px; flex-shrink: 0; }
.google-badge-info { display: flex; flex-direction: column; gap: .1rem; }
.google-badge-stars { color: #FBBC05; font-size: 1rem; letter-spacing: .05em; line-height: 1; }
.google-badge-text { font-size: .82rem; color: rgba(255,255,255,.75); }
.google-badge-text strong { color: var(--white); }
.google-badge-link {
  margin-left: auto; font-size: .8rem; font-weight: 600; color: #4285F4;
  border: 1px solid rgba(66,133,244,.35); padding: .35rem .85rem;
  border-radius: 100px; white-space: nowrap; transition: background .2s;
}
.google-badge-link:hover { background: rgba(66,133,244,.12); }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.testi-card {
  background: var(--navy-card); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color .25s;
}
.testi-card:hover { border-color: rgba(243,27,47,.25); }
.testi-card--featured {
  border-color: rgba(243,27,47,.35);
  background: linear-gradient(150deg, rgba(243,27,47,.08) 0%, var(--navy-card) 60%);
}
.testi-badge-featured {
  font-size: .75rem; font-weight: 700; color: var(--sand);
  letter-spacing: .04em; text-transform: uppercase;
}
.testi-stars { color: var(--sand); font-size: 1rem; letter-spacing: .1em; }
.testi-text { font-size: .9rem; color: rgba(255,255,255,.82); line-height: 1.65; font-style: italic; flex: 1; }
.testi-author {
  display: flex; align-items: center; gap: .85rem;
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 1rem;
}
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-mid); color: var(--sand);
  font-size: .82rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,.1); flex-shrink: 0;
}
.testi-avatar--featured { background: var(--sand-dim); border-color: rgba(243,27,47,.3); }
.testi-name { font-size: .88rem; font-weight: 700; }
.testi-detail { font-size: .78rem; color: var(--text-muted); }

/* ─────────────────────────────────────────
   9. FORMULÁRIO DE COTAÇÃO
───────────────────────────────────────── */
.cotacao {
  padding: 6rem 0;
  background: linear-gradient(160deg, #1a1000 0%, var(--navy-mid) 50%, var(--navy) 100%);
}
.cotacao-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.cotacao-bullets {
  display: flex; flex-direction: column; gap: .8rem; margin: 2rem 0 2.5rem;
}
.cotacao-bullets li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .92rem; color: rgba(255,255,255,.85);
}
.cotacao-bullets span {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(37,211,102,.15); color: var(--green-wa);
  font-size: .75rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.cotacao-equipe {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
}
.equipe-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), var(--orange));
  color: var(--navy); font-size: .9rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.equipe-name { font-size: .95rem; font-weight: 700; }
.equipe-role { font-size: .78rem; color: var(--text-muted); }
.equipe-status { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--green-wa); margin-top: .2rem; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-wa); animation: pulse 1.8s ease-in-out infinite; }

/* — Form — */
.cotacao-form-wrap { position: sticky; top: 2rem; }
.cotacao-form {
  background: var(--navy-card); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 2.5rem;
}
.form-title { font-size: 1.3rem; font-weight: 800; margin-bottom: .35rem; }
.form-sub { font-size: .85rem; color: var(--text-muted); margin-bottom: 2rem; }

.form-row { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .45rem; color: rgba(255,255,255,.8); }

.form-input {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12); border-radius: var(--radius-sm);
  color: var(--white); font-family: inherit; font-size: .92rem;
  padding: .75rem 1rem; outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: var(--sand); background: rgba(243,27,47,.06); }
.form-input option { background: var(--navy-card); color: var(--white); }
.form-textarea { resize: vertical; min-height: 80px; }

.form-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: .75rem;
  background: var(--green-wa); color: var(--white);
  font-size: 1rem; font-weight: 700; padding: 1rem;
  border-radius: var(--radius-sm); margin-top: .5rem;
  transition: background .2s, transform .2s; box-shadow: 0 8px 28px rgba(37,211,102,.3);
}
.form-submit:hover { background: #20c55e; transform: translateY(-1px); }
.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }
.form-privacy { text-align: center; font-size: .78rem; color: var(--text-muted); margin-top: .85rem; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--navy); border-top: 1px solid rgba(255,255,255,.06);
  padding: 2.5rem 0; text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo .footer-name { font-size: 1.2rem; font-weight: 800; color: var(--white); white-space: nowrap; }
.footer-logo-img { height: 28px; width: auto; display: block; object-fit: contain; opacity: 0.9; }
.footer-tagline { font-size: .85rem; color: var(--text-muted); }
.footer-links { display: flex; align-items: center; gap: .75rem; font-size: .85rem; }
.footer-links a { color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--sand); }
.footer-links span { color: rgba(255,255,255,.15); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.2); margin-top: .25rem; }

/* ─────────────────────────────────────────
   RESPONSIVIDADE — 1024px
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner     { grid-template-columns: 1fr; gap: 3rem; }
  .hero           { padding: 5rem 0 4rem; min-height: auto; }
  .hero-aside     { display: flex; justify-content: center; }
  .dest-badge     { max-width: 420px; width: 100%; }
  .hero-sticker--1 { right: -1rem; }
  .hero-sticker--2 { right: -.5rem; }

  .why-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-visual     { max-width: 600px; margin: 0 auto; }
  .exp-grid       { grid-template-columns: 1fr 1fr; }
  .exp-card--large { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .exp-card--large .exp-img { height: 240px; }
  .season-inner   { grid-template-columns: 1fr; }
  .package-grid   { grid-template-columns: 1fr; }
  .price-card     { max-width: 480px; }
  .cotacao-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .testi-grid     { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────
   RESPONSIVIDADE — 768px
───────────────────────────────────────── */
@media (max-width: 768px) {
  .stats-grid  { flex-wrap: wrap; }
  .stat-item   { flex: 1 1 45%; }
  .stat-divider { display: none; }
  .exp-grid    { grid-template-columns: 1fr; }
  .testi-grid  { grid-template-columns: 1fr; }
  .hero-ctas   { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; text-align: center; }
  .hero-aside  { display: none; }
  .cotacao-form-wrap { position: static; }
  .hero-sticker { display: none; }
  .scroll-hint  { display: none; }
  .season-months { height: 100px; }
  .google-badge { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .google-badge-link { margin-left: 0; }
}

/* ─────────────────────────────────────────
   RESPONSIVIDADE — 480px
───────────────────────────────────────── */
@media (max-width: 480px) {
  .hero, .why, .experiences, .season, .package, .testimonials, .cotacao { padding: 4rem 0; }
  .cotacao-form { padding: 1.75rem; }
  .stat-item { flex: 1 1 100%; }
  .footer-links { flex-direction: column; gap: .4rem; }
  .footer-links span { display: none; }
  .season-months { gap: .75rem; }
  .month-name { font-size: .68rem; }
}
