/* ============================================================
   TZ Viagens
   grupo-ofertas/style.css
   Landing page do grupo exclusivo de ofertas
   ============================================================ */

/* ─────────────────────────────────────────
   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);
  --green-wa:      #25D366;
  --green-wa-dark: #128C7E;
  --green-wa-dim:  rgba(37,211,102,0.12);
  --bg-light:      #F5F6FA;
  --text-muted:    #8A9BBF;
  --white:         #ffffff;

  --font:     'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-display: '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.18);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.10);
}

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; }

/* ─────────────────────────────────────────
   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;
}

/* ─────────────────────────────────────────
   1. BARRA TOPO — URGÊNCIA
───────────────────────────────────────── */
.top-bar {
  background: linear-gradient(90deg, #C81624, var(--orange), #C81624);
  background-size: 200% 100%;
  animation: topBarShine 4s ease infinite;
  text-align: center;
  padding: .55rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}
@keyframes topBarShine {
  0%   { background-position: 100% 0; }
  50%  { background-position: 0 0; }
  100% { background-position: 100% 0; }
}
.top-bar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  display: inline-block;
}

/* ─────────────────────────────────────────
   1.5 NAVBAR
───────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 42, 89, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  height: 70px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo .nav-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  position: relative;
  display: inline-block;
  color: #C5CFE0;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transition: right 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange) 0%, #C81624 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(243, 27, 47, 0.3);
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(243, 27, 47, 0.4); filter: brightness(1.05); }

@media (max-width: 1024px) {
  nav { padding: 0 40px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
}


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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/hero-bg.png');
  background-size: cover;
  background-position: center;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14,42,89,0.96) 0%,
    rgba(14,42,89,0.82) 50%,
    rgba(14,42,89,0.50) 100%
  );
}

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

/* — Badge — */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--orange-dim);
  border: 1px solid rgba(243,27,47,.3);
  color: var(--orange-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroReveal .7s cubic-bezier(.16,1,.3,1) .05s forwards;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.75); }
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroRevealScale {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge, .hero-title, .hero-sub, .hero-bullets, .hero-inner .btn-cta, .offer-card {
    animation: none;
    opacity: 1;
  }
}

/* — Título — */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
  opacity: 0;
  animation: heroReveal .7s cubic-bezier(.16,1,.3,1) .18s forwards;
}
.hero-title-accent {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--orange);
}

/* — Subtítulo — */
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.65;
  opacity: 0;
  animation: heroReveal .7s cubic-bezier(.16,1,.3,1) .3s forwards;
}

/* — Bullets — */
.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroReveal .7s cubic-bezier(.16,1,.3,1) .42s forwards;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
}
.bullet-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* — CTA principal — */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--green-wa);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 8px 30px rgba(37,211,102,.35);
  text-decoration: none;
}
.btn-cta:hover {
  background: #20c55e;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(37,211,102,.45);
}
.btn-cta:active { transform: translateY(0); }
.btn-cta--large {
  font-size: 1.15rem;
  padding: 1.15rem 2.5rem;
}
.hero-inner .btn-cta {
  opacity: 0;
  animation: heroReveal .7s cubic-bezier(.16,1,.3,1) .54s forwards;
}

.btn-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
}

.hero-disclaimer {
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   OFFER CARD (hero direito)
───────────────────────────────────────── */
.hero-card {
  position: relative;
}

.offer-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  opacity: 0;
  animation: heroRevealScale .8s cubic-bezier(.16,1,.3,1) .35s forwards,
             floatCard 6s ease-in-out 1.15s infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

.offer-card-img {
  height: 200px;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=600&h=340&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
}

.offer-card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(14,42,89,.75);
  backdrop-filter: blur(8px);
  color: var(--orange-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.tag-live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #f94040;
  animation: pulse 1.4s ease-in-out infinite;
}

.offer-card-body {
  padding: 1.25rem 1.5rem 1rem;
}
.offer-card-dest {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .2rem;
}
.offer-card-detail {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.offer-card-prices { margin-bottom: .85rem; }
.offer-old-price {
  font-size: .82rem;
  color: var(--text-muted);
}
.offer-old-price s { color: var(--text-muted); }
.offer-new-price {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
}
.price-pp {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.offer-card-badge {
  background: var(--orange-dim);
  color: var(--orange-light);
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .8rem;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.offer-card-footer {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-timer { text-align: center; }
.timer-label {
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
  margin-bottom: .35rem;
}
.timer-digits {
  display: flex;
  align-items: center;
  gap: .15rem;
  justify-content: center;
}
.digit {
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  width: 2rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
}
.colon {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-muted);
  line-height: 1;
  margin: 0 .05rem;
  align-self: center;
  padding-bottom: .15rem;
}

/* — Notificações flutuantes — */
.notif {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .65rem;
  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: .8rem;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  animation: notifAppear .5s ease forwards;
}
@keyframes notifAppear {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.notif-1 {
  bottom: 4.5rem;
  right: -2.5rem;
  animation-delay: 1.5s;
  opacity: 0;
}
.notif-2 {
  top: 5.5rem;
  right: -2rem;
  animation-delay: 3s;
  opacity: 0;
}
.notif-emoji { font-size: 1.2rem; }
.notif strong { display: block; font-weight: 700; font-size: .82rem; }
.notif-time { color: var(--text-muted); font-size: .72rem; }

/* ─────────────────────────────────────────
   3. STATS
───────────────────────────────────────── */
.stats {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 2.5rem 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 1rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   4. BENEFITS
───────────────────────────────────────── */
.benefits {
  padding: 6rem 0;
  background: var(--bg-light);
  color: var(--navy);
}
.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.benefits .section-label { color: var(--orange); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: .9rem;
  color: var(--navy);
}
.section-title .accent {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--orange);
}
.section-sub {
  font-size: 1rem;
  color: #5a6a8a;
  max-width: 520px;
  margin-bottom: 3.5rem;
  line-height: 1.65;
}

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

.benefit-card {
  background: var(--white);
  border: 1px solid rgba(14,42,89,.08);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14,42,89,.12);
  border-color: rgba(243,27,47,.25);
}
.benefit-card--highlight {
  background: var(--navy);
  border-color: transparent;
  color: var(--white);
  position: relative;
}
.benefit-card--highlight h3 { color: var(--white); }
.benefit-card--highlight p  { color: rgba(255,255,255,.75); }

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(9,24,48,.15);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform .25s, border-color .25s;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-card:hover .benefit-icon { transform: scale(1.08); border-color: var(--orange); }
.benefit-card--highlight .benefit-icon { border-color: rgba(255,255,255,.25); color: var(--white); }
.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
.benefit-card p {
  font-size: .9rem;
  color: #5a6a8a;
  line-height: 1.6;
}
.benefit-tag {
  display: inline-block;
  margin-top: 1.25rem;
  background: rgba(243,27,47,.18);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: 100px;
}

/* ─────────────────────────────────────────
   5. COMO FUNCIONA
───────────────────────────────────────── */
.how {
  padding: 6rem 0;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 55% at 90% 100%, rgba(243,27,47,.10) 0%, transparent 65%);
  pointer-events: none;
}
.how .container { position: relative; }
.how .section-label { color: var(--orange); }
.how .section-title { color: var(--white); }

.steps {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.step {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #C81624 100%);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--white);
}
.step-content p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.step-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  align-self: center;
}

/* ─────────────────────────────────────────
   6. DEPOIMENTOS
───────────────────────────────────────── */

/* — Google Reviews Badge — */
.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, color .2s;
}
.google-badge-link:hover { background: rgba(66,133,244,.12); }

.testimonials {
  padding: 6rem 0;
  background: var(--navy);
}
.testimonials .section-label { color: var(--orange); }
.testimonials .section-title { color: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.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;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -18px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 900;
  font-style: italic;
  color: rgba(255,255,255,.05);
  line-height: 1;
  pointer-events: none;
}
.testi-card:hover { border-color: rgba(243,27,47,.25); transform: translateY(-4px); }

.testi-card--featured {
  border-color: rgba(243,27,47,.35);
  background: linear-gradient(150deg, rgba(243,27,47,.08) 0%, var(--navy-card) 60%);
  position: relative;
}
.testi-badge-featured {
  font-size: .75rem;
  font-weight: 700;
  color: var(--orange-light);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: -.25rem;
}

.testi-stars {
  color: var(--orange);
  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(--orange-light);
  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: rgba(243,27,47,.15);
  color: var(--orange);
  border-color: rgba(243,27,47,.3);
}
.testi-name {
  font-size: .88rem;
  font-weight: 700;
}
.testi-detail {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   6.5 FORMULÁRIO DE CADASTRO
───────────────────────────────────────── */
.form-section {
  padding: 6rem 0;
  background: var(--bg-light);
}
.form-header { text-align: center; margin: 0 auto 3rem; max-width: 560px; }
.form-header .section-title,
.form-header .section-sub { color: var(--navy); }
.form-header .section-sub { color: #5a6a8a; margin: 0 auto; }

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(9,24,48,.08);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 16px 48px rgba(9,24,48,.08);
}

.form-row--full { grid-column: 1 / -1; }

.form-row label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: var(--font);
  font-size: .92rem;
  color: var(--navy);
  background: var(--bg-light);
  border: 1.5px solid #DDE2EF;
  border-radius: 10px;
  padding: .75rem 1rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--green-wa);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-row select { cursor: pointer; }

.form-row--submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  margin-top: .5rem;
}
.form-submit-btn {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.form-submit-btn:disabled { opacity: .7; cursor: not-allowed; }

.form-status {
  font-size: .85rem;
  font-weight: 600;
  text-align: center;
  min-height: 1.2em;
}
.form-status--success { color: var(--green-wa-dark); }
.form-status--error { color: #d9364a; }


/* ─────────────────────────────────────────
   7. CTA FINAL
───────────────────────────────────────── */
.cta-final {
  padding: 7rem 0;
  background: linear-gradient(160deg, #050F1C 0%, var(--navy-mid) 60%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(243,27,47,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.cta-final-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.75rem;
  background: var(--orange-dim);
  border: 1.5px solid rgba(243,27,47,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.cta-final-icon svg { width: 36px; height: 36px; }

.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.12;
}
.cta-final-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.cta-final-disclaimer {
  margin-top: 1.25rem;
  font-size: .82rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   8. FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 4rem 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange) 50%, transparent);
  opacity: .5;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand { max-width: 300px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-logo .footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  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;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-col ul li a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--orange-light); }

.footer-contact p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-social { display: flex; gap: .6rem; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.social-btn:hover { background: var(--orange-dim); transform: translateY(-2px); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-legal { display: flex; align-items: center; gap: .6rem; }
.footer-legal a { color: var(--text-muted); transition: color .2s; }
.footer-legal a:hover { color: var(--orange-light); }
.footer-legal span { color: rgba(255,255,255,.15); }

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

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
  /* 6 cards em grid 3×2 — sem tratamento especial para last-child */
}

/* ─────────────────────────────────────────
   RESPONSIVIDADE — 768px
───────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-bg-overlay {
    background: linear-gradient(180deg, rgba(14,42,89,.97) 0%, rgba(14,42,89,.88) 100%);
  }

  .benefits-grid { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .testi-card:last-child { grid-column: auto; max-width: none; }

  .lead-form { grid-template-columns: 1fr; padding: 1.75rem; }

  .stats-grid { flex-wrap: wrap; }
  .stat-item  { flex: 1 1 45%; }
  .stat-divider { display: none; }

  .steps {
    flex-direction: column;
    gap: 1rem;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: -.25rem 0;
  }

  .top-bar { font-size: .78rem; gap: .5rem; }

  .notif { display: none; }
}

/* ─────────────────────────────────────────
   RESPONSIVIDADE — 480px
───────────────────────────────────────── */
@media (max-width: 480px) {
  .hero { padding: 4rem 0 3rem; }
  .benefits, .how, .testimonials { padding: 4rem 0; }
  .cta-final { padding: 5rem 0; }

  .btn-cta { font-size: .95rem; padding: .9rem 1.5rem; width: 100%; justify-content: center; }
  .btn-cta--large { font-size: 1rem; padding: 1rem 1.5rem; }

  .stats-grid { gap: 0; }
  .stat-item  { flex: 1 1 50%; padding: 1.25rem .75rem; }

  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}
