/* =====================================================
   BEFLY TRAVEL – LP EUROTRIP DRIKA
   Design System + Custom Styles
   Paleta: #3E1E6B (roxo) · #f0660e (laranja) · #041e42 (navy rodapé)
   htribas marketing e performance | htribas.com.br
   ===================================================== */

/* ── DESIGN TOKENS ── */
:root {
  /* BeFly Travel Brand Palette */
  --purple:         #3E1E6B;   /* primário */
  --purple-dark:    #2B1249;   /* hero / dark sections */
  --purple-mid:     #5A2E98;   /* hover / variante */
  --purple-light:   #7B4DB8;   /* gradiente claro */
  --purple-pale:    #F3EEF9;   /* fundo seção clara */

  --orange:         #f0660e;   /* acento / CTA */
  --orange-dark:    #c9510a;   /* hover laranja */
  --orange-light:   #FF8640;   /* variante clara */
  --orange-pale:    #FFF3EC;   /* fundo suave laranja */

  --navy:           #041e42;   /* rodapé / faixa assinatura */
  --navy-mid:       #0A3060;

  /* Neutros */
  --white:          #FFFFFF;
  --off-white:      #F8F7FA;
  --gray-100:       #F1F0F4;
  --gray-200:       #E2DFEA;
  --gray-400:       #9B96AA;
  --gray-600:       #55505F;
  --gray-800:       #211D2B;
  --dark:           #100C1A;

  /* Semantic */
  --success:        #10B981;
  --danger:         #EF4444;

  /* Gradientes */
  --grad-hero:      linear-gradient(135deg, #2B1249 0%, #3E1E6B 55%, #5A2E98 100%);
  --grad-orange:    linear-gradient(135deg, #f0660e 0%, #FF8640 100%);
  --grad-purple:    linear-gradient(135deg, #3E1E6B 0%, #5A2E98 100%);
  --grad-dark:      linear-gradient(180deg, #2B1249 0%, #3E1E6B 100%);

  /* Tipografia */
  --font-head:      "Ample Soft Pro", sans-serif;
  --font-body:      "Ample Soft Pro", sans-serif;

  /* Espaçamento */
  --section-py:     5rem;

  /* Sombras */
  --shadow-sm:      0 2px 8px rgba(62,30,107,.10);
  --shadow-md:      0 8px 32px rgba(62,30,107,.14);
  --shadow-lg:      0 20px 60px rgba(62,30,107,.20);
  --shadow-orange:  0 8px 32px rgba(240,102,14,.35);
  --shadow-purple:  0 8px 32px rgba(62,30,107,.30);

  /* Bordas */
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      22px;
  --radius-xl:      32px;

  /* Transições */
  --ease:           cubic-bezier(.4,0,.2,1);
  --trans-fast:     .2s var(--ease);
  --trans-med:      .35s var(--ease);
}

/* ── GLOBAL ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

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

.container-xl {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── TIPOGRAFIA AUXILIAR ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.eyebrow.light { color: var(--orange-light); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-title.white { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-inline: auto;
}
.section-sub.white { color: rgba(255,255,255,.80); }

.section-header { margin-bottom: .5rem; }

.text-orange  { color: var(--orange); }
.text-purple  { color: var(--purple); }

.strike-text {
  text-decoration: line-through;
  color: var(--danger);
  opacity: .75;
}

/* ── BOTÕES ── */
.btn-orange {
  background: var(--grad-orange);
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: .75rem 2rem;
  letter-spacing: .02em;
  box-shadow: var(--shadow-orange);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast), filter var(--trans-fast);
  white-space: nowrap;
}
.btn-orange:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 44px rgba(240,102,14,.50);
  filter: brightness(1.06);
  color: var(--white);
}
.btn-orange:active { transform: translateY(0); }

/* Alias para compatibilidade com classes btn-gold existentes no HTML */
.btn-gold { background: var(--grad-orange); color: var(--white); font-weight: 700; border: none;
  border-radius: 50px; padding: .75rem 2rem; letter-spacing: .02em; box-shadow: var(--shadow-orange);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast), filter var(--trans-fast);
  white-space: nowrap; }
.btn-gold:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 14px 44px rgba(240,102,14,.50);
  filter: brightness(1.06); color: var(--white); }
.btn-gold:active { transform: translateY(0); }

.btn-outline-white {
  border: 2px solid rgba(255,255,255,.55);
  color: var(--white);
  border-radius: 50px;
  padding: .7rem 1.75rem;
  font-weight: 600;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  transition: var(--trans-fast);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.18);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-primary {
  border: 2px solid var(--orange) !important;
  color: var(--orange) !important;
  border-radius: 50px;
  padding: .75rem 2rem;
  font-weight: 600;
  background: transparent;
  transition: var(--trans-fast);
}
.btn-outline-primary:hover {
  background: var(--orange);
  color: var(--white) !important;
}

/* ── WHATSAPP FLUTUANTE ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 9000;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--trans-fast);
}
.whatsapp-float:hover { transform: scale(1.12); color: var(--white); }

.whatsapp-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .5;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--trans-med), box-shadow var(--trans-med), padding var(--trans-med);
}
.site-header.scrolled {
  background: rgba(43,18,73,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,.30);
  padding: .6rem 0;
}

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

.header-logo { display: flex; align-items: center; gap: .6rem; }
.logo-img    { height: 44px; width: auto; }

.logo-fallback {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
}
.logo-icon { font-size: 1.5rem; color: var(--orange); }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); line-height: 1.1;
}
.logo-text small { display: block; font-family: var(--font-body); font-size: .68rem; font-weight: 400; opacity: .8; }

.header-nav { display: flex; gap: 2rem; align-items: center; }
.header-nav a {
  color: rgba(255,255,255,.80);
  font-size: .9rem; font-weight: 500;
  transition: color var(--trans-fast);
}
.header-nav a:hover { color: var(--orange); }

.btn-header { padding: .55rem 1.5rem; font-size: .9rem; }

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--grad-hero);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 75% 45%, rgba(240,102,14,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 5% 80%,  rgba(255,255,255,.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .35;
  pointer-events: none;
}

.hero-row { padding: 5.5rem 0 3rem; }

/* copy */
.hero-copy { position: relative; z-index: 2; }

.hero-badge-wrap { margin-bottom: 1rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(240,102,14,.15);
  border: 1px solid rgba(240,102,14,.45);
  color: var(--orange-light);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .05em;
  padding: .35rem .9rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.hero-badge i { font-size: .9rem; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 1rem;
}
.hero-title em { font-style: normal; color: var(--orange); }

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 1.5rem;
  max-width: 500px;
  line-height: 1.65;
}
.hero-subtitle strong { color: var(--white); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: .875rem; margin-bottom: 1.75rem; }
.cta-main  { font-size: .95rem; }

.hero-trust { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.trust-stat { display: flex; flex-direction: column; gap: .1rem; }
.trust-stat strong { font-size: 1.3rem; font-weight: 800; color: var(--orange); line-height: 1; }
.trust-stat span   { font-size: .72rem; color: rgba(255,255,255,.65); font-weight: 500; }
.trust-divider     { width: 1px; height: 32px; background: rgba(255,255,255,.2); }

/* foto */
.hero-photo-col { position: relative; z-index: 2; }

/* ── HERO MINI PARALLAX (coluna direita – hero A) ── */
.hero-mini-parallax {
  position: relative;
  width: 100%;
  height: clamp(340px, 42vh, 480px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--purple-dark);
  box-shadow: var(--shadow-lg);
}

.hmp-layer {
  position: absolute;
  will-change: transform;
}

/* 08 – Céu (z=1) */
.hmp-sky { inset: 0; width: 100%; z-index: 1; }
.hmp-sky img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* 07 – Torre Eiffel: esquerda, alta (z=2) */
.hmp-eiffel { bottom: 18%; left: -2%; width: 32%; z-index: 2; transform: none; }
.hmp-eiffel img { width: 100%; }

/* 06 – Big Ben: direita (z=3) */
.hmp-bigben { bottom: 18%; right: -2%; width: 24%; z-index: 3; }
.hmp-bigben img { width: 100%; }

/* 05 – Coliseu: centro (z=4) */
.hmp-coliseu { bottom: 15%; left: 50%; transform: translateX(-50%); width: 38%; z-index: 4; }
.hmp-coliseu img { width: 100%; }

/* 4.1 – Névoa roxa: base (z=5) */
.hmp-clouds { bottom: -5%; left: -3%; width: 106%; z-index: 5; }
.hmp-clouds img { width: 100%; }

/* 04 – Trem: vindo da esquerda (z=6) */
.hmp-train { bottom: 8%; left: -3%; width: 42%; z-index: 6; }
.hmp-train img { width: 100%; }

/* 03 – Polaroid Amsterdam: canto inf. direito (z=7) */
.hmp-polar-b { bottom: 2%; right: 4%; width: 130px; z-index: 7; }
.hmp-polar-b img { width: 100%; }

/* 02 – Polaroid Santorini: canto inf. esquerdo (z=8) */
.hmp-polar-a { bottom: 2%; left: 4%; width: 125px; z-index: 8; }
.hmp-polar-a img { width: 100%; }

/* 01 – Mala + essenciais: centro-baixo (z=9) */
.hmp-luggage { bottom: -4%; left: 50%; transform: translateX(-50%); width: 28%; z-index: 9; }
.hmp-luggage img { width: 100%; }

/* 00 – Balão: canto superior direito (z=10) */
.hmp-balloon { top: 8%; right: 12%; left: auto; width: 68px; z-index: 10; }
.hmp-balloon .balloon-inner { animation: balloonFloat 5s ease-in-out infinite; }
.hmp-balloon img { width: 100%; }
.hero-photo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.photo-ring {
  position: absolute;
  border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite;
}
.photo-ring-1 {
  width: 320px; height: 320px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(240,102,14,.25);
}
.photo-ring-2 {
  width: 420px; height: 420px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation-delay: 1.5s;
  border: 1px solid rgba(255,255,255,.10);
}
@keyframes ringPulse {
  0%,100% { opacity:.4; transform:translate(-50%,-50%) scale(1); }
  50%      { opacity:.8; transform:translate(-50%,-50%) scale(1.04); }
}

.hero-photo-bg {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 260px; height: 300px;
  background: linear-gradient(180deg, transparent 20%, rgba(240,102,14,.20) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  filter: blur(30px);
}

.hero-photo-frame {
  position: relative; z-index: 2;
  width: 280px; height: 380px;
  border: 2px dashed rgba(255,255,255,.25);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-photo {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}

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

.hero-photo-placeholder {
  display: none;
  flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem;
  width: 100%; height: 100%;
  color: rgba(255,255,255,.50);
  font-size: .9rem;
}
.hero-photo-placeholder i { font-size: 3.5rem; }

.floating-badge {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: .6rem 1rem;
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: badgeFloat 5s ease-in-out infinite;
}
.badge-stars { left: -1rem; top: 20%; animation-delay: .5s; color: var(--gray-800); }
.badge-stars i { color: #F59E0B; font-size: .85rem; }
.badge-dest  { right: -1rem; bottom: 25%; animation-delay: 1.5s; color: var(--purple); }
.badge-dest  i { color: var(--orange); }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.50);
  font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 5;
}
.scroll-ring {
  width: 28px; height: 42px;
  border: 2px solid rgba(255,255,255,.30);
  border-radius: 20px; position: relative;
}
.scroll-ring::after {
  content: ''; position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,.50);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot  { 0%  { top: 6px;  opacity: 1; } 100% { top: 22px; opacity: 0; } }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(6px); }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--purple-dark);
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 3px solid var(--orange);
}
.trust-bar-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.trust-bar-item {
  display: flex; align-items: center; gap: .75rem;
  color: var(--white);
}
.trust-bar-item i     { font-size: 1.6rem; color: var(--orange); flex-shrink: 0; }
.trust-bar-item div   { display: flex; flex-direction: column; gap: .05rem; }
.trust-bar-item strong { font-size: 1.05rem; font-weight: 700; line-height: 1; }
.trust-bar-item span  { font-size: .72rem; color: rgba(255,255,255,.65); font-weight: 500; }
.trust-bar-sep        { width: 1px; height: 36px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* ── PARALLAX SCENE ── */
.parallax-scene {
  position: relative;
  height: 78vh;
  min-height: 540px;
  max-height: 820px;
  overflow: hidden;
  background: var(--purple-dark);  /* fallback enquanto imagens carregam */
}

.px-layer {
  position: absolute;
  will-change: transform;
}

/* 08 – Céu (fundo total, z=1) */
.px-sky { inset: 0; width: 100%; z-index: 1; }
.px-sky img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* 07 – Torre Eiffel: esquerda, alta (z=2) */
.px-eiffel { bottom: 18%; left: -2%; width: 30%; z-index: 2; transform: none; }
.px-eiffel img { width: 100%; }

/* 06 – Big Ben: direita (z=3) */
.px-bigben { bottom: 18%; right: -2%; width: 22%; z-index: 3; }
.px-bigben img { width: 100%; }

/* 05 – Coliseu: centro (z=4) */
.px-coliseu { bottom: 15%; left: 50%; transform: translateX(-50%); width: 36%; z-index: 4; }
.px-coliseu img { width: 100%; }

/* 4.1 – Névoa roxa: base cobrindo monumentos (z=5) */
.px-clouds { bottom: -5%; left: -3%; width: 106%; z-index: 5; }
.px-clouds img { width: 100%; }

/* 04 – Trem: vindo da esquerda (z=6) */
.px-train { bottom: 8%; left: -3%; width: 38%; z-index: 6; }
.px-train img { width: 100%; }

/* 03 – Polaroid Amsterdam: canto inf. direito (z=7) */
.px-polar-b { bottom: 2%; right: 5%; width: 190px; z-index: 7; }
.px-polar-b img { width: 100%; }

/* 02 – Polaroid Santorini: canto inf. esquerdo (z=8) */
.px-polar-a { bottom: 2%; left: 5%; width: 190px; z-index: 8; }
.px-polar-a img { width: 100%; }

/* 01 – Mala + essenciais: centro-baixo, foreground grande (z=9) */
.px-luggage { bottom: -4%; left: 50%; transform: translateX(-50%); width: 24%; z-index: 9; }
.px-luggage img { width: 100%; }

/* 00 – Balão: canto superior direito (z=10) */
.px-balloon { top: 8%; right: 14%; left: auto; width: 90px; z-index: 10; }
.balloon-inner { animation: balloonFloat 5s ease-in-out infinite; }
.balloon-inner img { width: 100%; }

@keyframes balloonFloat {
  0%,100% { transform: translateY(0)    rotate(-2deg); }
  50%     { transform: translateY(-18px) rotate(2deg); }
}

/* Overlay de texto */
.px-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 11;
  text-align: center;
  padding: 3rem 1rem 1.25rem;
  background: linear-gradient(to top, rgba(43,18,73,.55) 0%, transparent 100%);
}
.px-tagline {
  color: rgba(255,255,255,.92);
  font-size: clamp(.8rem, 1.6vw, 1rem);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}

/* ── Responsivo ── */
@media (max-width: 991.98px) {
  .px-eiffel   { width: 32%; }
  .px-bigben   { width: 24%; }
  .px-coliseu  { width: 40%; }
  .px-train    { width: 42%; }
  .px-polar-a  { width: 155px; }
  .px-polar-b  { width: 155px; }
  .px-luggage  { width: 26%; }
  .px-balloon  { width: 76px; right: 10%; }
}

@media (max-width: 767.98px) {
  .parallax-scene { height: 56vw; min-height: 300px; }
  .px-eiffel   { width: 36%; bottom: 20%; }
  .px-bigben   { width: 28%; bottom: 18%; }
  .px-coliseu  { width: 46%; bottom: 16%; }
  .px-polar-a, .px-polar-b, .px-luggage, .px-train { display: none; }
  .px-balloon  { width: 58px; top: 6%; right: 8%; }
}

/* ── VSL ── */
.vsl-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.vsl-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 600;
  color: var(--purple); letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: .75rem;
}
.vsl-eyebrow i { font-size: 1.1rem; color: var(--orange); }

.vsl-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.vsl-title .text-orange { color: var(--orange); }

.vsl-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .vsl-section { text-align: center; }
  .vsl-desc { max-width: 520px; margin-inline: auto; }
}

.vsl-container {
  position: relative;
  width: 100%;
  max-height: 72vh;
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--purple-dark);
  margin-inline: auto;
}
.vsl-container iframe { width: 100%; height: 100%; border: none; display: block; }
.vsl-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.vsl-placeholder {
  position: absolute; inset: 0;
  transition: opacity .35s ease;
}
.vsl-placeholder.hidden { opacity: 0; pointer-events: none; }

.vsl-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  background: var(--grad-hero);
  cursor: pointer;
  transition: filter var(--trans-fast);
}
.vsl-placeholder:hover { filter: brightness(1.08); }

.vsl-play-btn {
  width: 80px; height: 80px;
  background: var(--grad-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: var(--white);
  box-shadow: var(--shadow-orange);
  transition: transform var(--trans-fast);
}
.vsl-placeholder:hover .vsl-play-btn { transform: scale(1.1); }
.vsl-label    { color: rgba(255,255,255,.70); font-size: .9rem; margin: 0; }
.vsl-duration { color: var(--orange-light); font-size: .8rem; font-weight: 600; }
.vsl-caption  { margin-top: 1rem; font-size: .82rem; color: var(--gray-400); }
.vsl-caption i { color: var(--purple); }

/* ── POSICIONAMENTO ── */
.positioning-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.pos-card {
  border-radius: var(--radius-lg);
  padding: 2rem; height: 100%;
  transition: transform var(--trans-med), box-shadow var(--trans-med);
}
.pos-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pos-no  { background: #FFF5F5; border: 1.5px solid #FCA5A5; }
.pos-yes { background: linear-gradient(135deg, var(--purple-pale) 0%, #EDE5FA 100%); border: 1.5px solid #C4A0E8; }

.pos-card-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.pos-card-header h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin: 0; }
.pos-no  .pos-card-header h3 { color: var(--danger); }
.pos-yes .pos-card-header h3 { color: var(--purple); }

.pos-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; flex-shrink: 0;
}
.pos-icon-no  { background: var(--danger);  color: var(--white); }
.pos-icon-yes { background: var(--purple);  color: var(--white); }

.pos-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .85rem; }
.pos-card li { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; line-height: 1.5; color: var(--gray-800); }
.pos-no  li i { color: var(--danger);  font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }
.pos-yes li i { color: var(--success); font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }

/* ── SERVIÇOS ── */
.services-section {
  padding: var(--section-py) 0;
  background: var(--purple-pale);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem; height: 100%;
  border: 1.5px solid var(--gray-200);
  transition: transform var(--trans-med), box-shadow var(--trans-med), border-color var(--trans-med);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-orange);
  transform: scaleX(0); transition: transform var(--trans-med);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }

.service-card-gold {
  background: linear-gradient(135deg, #FFF3EC 0%, #FFE8D9 100%);
  border-color: rgba(240,102,14,.25);
}
.service-card-gold::before { display: none; }

.service-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  background: var(--purple-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--purple);
  margin-bottom: 1rem;
  transition: background var(--trans-fast), color var(--trans-fast), transform var(--trans-fast);
}
.service-card:hover .service-icon { background: var(--purple); color: var(--white); transform: scale(1.08) rotate(-4deg); }
.service-card-gold .service-icon  { background: rgba(240,102,14,.12); color: var(--orange-dark); }

.service-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.service-card p  { font-size: .88rem; color: var(--gray-600); margin: 0; line-height: 1.6; }

.badge-opt {
  background: rgba(240,102,14,.15);
  color: var(--orange-dark);
  font-size: .65rem; font-weight: 700;
  padding: .15rem .5rem; border-radius: 50px;
  vertical-align: middle; margin-left: .35rem;
}

/* ── SOBRE ── */
.about-section {
  padding: var(--section-py) 0;
  background: var(--grad-dark);
  overflow: hidden;
}
.about-section .section-title { color: var(--white); }
.about-section .eyebrow       { color: var(--orange); }

.about-photo-wrap { position: relative; display: inline-block; }
.about-photo-ring {
  position: absolute; inset: -20px;
  border-radius: var(--radius-xl);
  border: 2px dashed rgba(240,102,14,.30);
  animation: ringRotate 20s linear infinite;
}
@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.about-photo {
  width: 100%; max-width: 380px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.about-photo-placeholder {
  display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem;
  width: 280px; height: 360px;
  border: 2px dashed rgba(255,255,255,.25);
  border-radius: var(--radius-xl);
  color: rgba(255,255,255,.50); font-size: .9rem;
  position: relative; z-index: 2; margin-inline: auto;
}
.about-photo-placeholder i { font-size: 4rem; }

.about-cert-badge {
  position: absolute; bottom: -1rem; right: -1rem; z-index: 3;
  background: var(--grad-orange);
  color: var(--white); font-size: .75rem; font-weight: 700;
  padding: .5rem 1rem; border-radius: 50px;
  display: flex; align-items: center; gap: .4rem;
  box-shadow: var(--shadow-orange);
}

.about-text { color: rgba(255,255,255,.85); margin-bottom: 1rem; line-height: 1.75; }
.about-text strong { color: var(--white); }
.about-text em     { color: var(--orange); font-style: normal; }

.about-highlights  { display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; }
.highlight-line {
  display: flex; align-items: center; gap: .65rem;
  font-size: .92rem; color: rgba(255,255,255,.85);
}
.highlight-line i { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; }

/* ── PARA QUEM ── */
.forwhom-section { padding: var(--section-py) 0; background: var(--off-white); }

.forwhom-card {
  background: var(--white);
  border-radius: var(--radius-lg); padding: 2rem; height: 100%;
  border: 1.5px solid var(--gray-200); position: relative; overflow: hidden;
  transition: transform var(--trans-med), box-shadow var(--trans-med);
}
.forwhom-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.fw-number {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 800;
  line-height: 1; margin-bottom: .75rem;
  background: linear-gradient(135deg, var(--purple-pale) 0%, #EDE5FA 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  transition: background var(--trans-med);
}
.forwhom-card:hover .fw-number {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
  -webkit-background-clip: text; background-clip: text;
}
.forwhom-card p { font-size: .97rem; color: var(--gray-600); margin: 0; line-height: 1.65; }
.forwhom-cta-label { font-size: 1.1rem; color: var(--gray-600); margin-bottom: 1.5rem; font-weight: 500; }

/* ── PROCESSO ── */
.process-section { padding: var(--section-py) 0; background: var(--white); overflow: hidden; }

.process-track { position: relative; display: flex; flex-direction: column; gap: 2.5rem; }
.process-connector {
  position: absolute; top: 2rem; bottom: 2rem; left: 50%;
  transform: translateX(-50%); width: 2px;
  background: linear-gradient(180deg, var(--purple), var(--orange));
  border-radius: 1px;
}

.process-step { display: flex; align-items: center; gap: 2rem; position: relative; }
.process-step.reverse { flex-direction: row-reverse; }

.ps-number {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800;
  color: var(--white); line-height: 1;
  width: 64px; height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-orange);
  position: relative; z-index: 2; flex-shrink: 0;
  transition: background var(--trans-med), transform var(--trans-fast);
}
.process-step:hover .ps-number { background: var(--grad-purple); transform: scale(1.1); }

.ps-body {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 1.75rem; flex: 1;
  transition: transform var(--trans-med), box-shadow var(--trans-med);
}
.process-step:hover .ps-body        { transform: translateX(4px);  box-shadow: var(--shadow-md); }
.process-step.reverse:hover .ps-body { transform: translateX(-4px); }

.ps-icon {
  width: 48px; height: 48px; background: var(--purple-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--purple); margin-bottom: .75rem;
  transition: background var(--trans-fast), color var(--trans-fast);
}
.process-step:hover .ps-icon { background: var(--purple); color: var(--white); }

.ps-body h4 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.ps-body p  { font-size: .9rem; color: var(--gray-600); margin: 0; }

/* ── DEPOIMENTOS ── */
.testimonials-section { padding: var(--section-py) 0; background: var(--purple-pale); }

.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; height: 100%;
  border: 1.5px solid var(--gray-200);
  transition: transform var(--trans-med), box-shadow var(--trans-med);
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }


.tc-stars    { display: flex; gap: .2rem; }
.tc-stars i  { color: var(--orange); font-size: .95rem; }

.testimonial-card p { font-size: .92rem; color: var(--gray-600); line-height: 1.7; flex: 1; font-style: italic; }
.tc-author          { display: flex; align-items: center; gap: .75rem; }
.tc-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad-purple);
  color: var(--white); font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tc-author strong { display: block; font-size: .9rem; color: var(--dark); }
.tc-author span   { font-size: .78rem; color: var(--gray-400); }

/* ── FORMULÁRIO ── */
.form-section {
  position: relative; padding: var(--section-py) 0; overflow: hidden;
}

/* ── Avião scroll motion ── */
.plane-fly {
  position: absolute;
  left: 0; top: 0;
  height: 30vh;
  width: auto;
  pointer-events: none;
  will-change: transform, opacity;
  opacity: 0;
  z-index: 3;
  transform-origin: center center;
}
.plane-fly img {
  height: 100%;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.22));
}

.form-section-bg {
  position: absolute; inset: 0;
  background: var(--grad-hero);
}
.form-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.form-box {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-xl); padding: 3rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  position: relative; z-index: 2;
}
.form-box-header { text-align: center; margin-bottom: 2rem; }
.form-box-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700;
  color: var(--dark); margin-bottom: .5rem;
}
.form-box-header p { color: var(--gray-600); font-size: .95rem; margin: 0; }
.form-box-header .eyebrow { color: var(--orange); }

/* progress bar */
.form-progress-bar { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 2rem; }
.fpb-step { display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.fpb-step span {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-200); color: var(--gray-400);
  font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans-med), color var(--trans-med), transform var(--trans-fast);
}
.fpb-step.active span, .fpb-step.done span { background: var(--purple); color: var(--white); transform: scale(1.1); }
.fpb-step.done span { background: var(--success); }
.fpb-step small { font-size: .7rem; color: var(--gray-400); font-weight: 600; }
.fpb-step.active small { color: var(--purple); }
.fpb-line { flex: 1; height: 2px; background: var(--gray-200); max-width: 80px; transition: background var(--trans-med); }
.fpb-line.active { background: var(--purple); }

/* steps */
.form-step { display: none; animation: stepIn .35s var(--ease); }
.form-step.active { display: block; }
@keyframes stepIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }

.step-label { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 1.25rem; }

.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-family: var(--font-body); font-size: .92rem; color: var(--dark);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}
.form-control:focus, .form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(62,30,107,.12);
  outline: none;
}
.form-label  { font-size: .85rem; font-weight: 600; color: var(--gray-800); margin-bottom: .35rem; }
.req { color: var(--danger); }

.form-security-note {
  text-align: center; font-size: .78rem; color: var(--gray-400);
  margin-top: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.form-security-note i { color: var(--purple); }

/* ── FAQ ── */
.faq-section { padding: var(--section-py) 0; background: var(--white); }

.faq-accordion .accordion-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md) !important;
  margin-bottom: .75rem; overflow: hidden;
  transition: box-shadow var(--trans-fast);
}
.faq-accordion .accordion-item:hover { box-shadow: var(--shadow-sm); }

.faq-accordion .accordion-button {
  font-family: var(--font-body); font-weight: 600;
  font-size: .97rem; color: var(--dark);
  background: var(--white); padding: 1.1rem 1.5rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--purple); background: var(--purple-pale); box-shadow: none;
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%233E1E6B' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-collapse {
  display: block !important;
  overflow: hidden;
  max-height: 0;
  transition: max-height .38s ease;
}
.faq-accordion .accordion-collapse.show {
  max-height: 600px;
}
.faq-accordion .accordion-body {
  font-size: .93rem; color: var(--gray-600); line-height: 1.7;
  padding: 1rem 1.5rem 1.25rem; background: var(--white);
}
.faq-more-label { font-size: 1rem; color: var(--gray-600); margin-bottom: 1.25rem; }

/* ── RODAPÉ ── */
.site-footer { background: var(--purple); padding: 2.5rem 0; border-top: 3px solid var(--orange); }

.footer-bottom {
  background: #180930;
  padding: .6rem 1.5rem;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: .75rem;
  color: rgba(255,255,255,.50);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center; gap: 1.5rem;
}
.footer-logo { height: 30px; }
.footer-logo-area { display: flex; flex-direction: column; gap: .5rem; align-items: flex-start; }
.footer-tagline { font-size: .78rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-copy { text-align: center; font-size: .8rem; color: rgba(255,255,255,.55); margin: 0; line-height: 1.6; }
.footer-right { text-align: right; }
.footer-social { display: flex; gap: 1rem; justify-content: flex-end; margin-bottom: .75rem; }
.fs-link { color: rgba(255,255,255,.55); font-size: 1.75rem; transition: color var(--trans-fast), transform var(--trans-fast); }
.fs-link:hover { color: var(--orange); transform: translateY(-2px); }
.footer-agency { font-size: .72rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-agency a { color: var(--orange); transition: color var(--trans-fast); }
.footer-agency a:hover { color: var(--orange-light); }

/* ── WORLD SECTION ── */
.world-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: #fdf6ee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.world-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 660px;
  padding: 6rem 2rem;
}

.world-trust {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .85rem;
  color: #6b5c4a;
}
.world-stars { color: var(--orange); display: flex; gap: 2px; font-size: .85rem; }

.world-title {
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 2rem;
}

.world-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.world-btn-outline {
  color: var(--navy);
  border: 2px solid var(--navy);
  background: transparent;
  font-weight: 600;
}
.world-btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

/* Wrapper: posição absoluta + parallax de scroll via --py (JS) */
.wp-wrap {
  position: absolute;
  will-change: transform;
  --py: 0px;
  transform: translateY(var(--py));
  z-index: 2;
}

/* Polaroid: quadro branco + rotação + float — tudo junto, como uma peça só */
.world-photo {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 10px 10px 36px;
  box-shadow: 0 12px 40px rgba(0,0,0,.14), 0 2px 8px rgba(0,0,0,.07);
  border-radius: 2px;
  rotate: var(--rot, 0deg);
  animation: photoFloat 4s ease-in-out infinite;
  transition: box-shadow .3s ease;
}
.wp-wrap:hover .world-photo {
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
  z-index: 6;
}
.world-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1px;
}

/* Float: usa `translate` (propriedade individual) — não conflita com `rotate` */
@keyframes photoFloat {
  0%, 100% { translate: 0 0px;   }
  50%       { translate: 0 -11px; }
}
.wp-1 .world-photo { animation-duration: 3.8s; animation-delay: -1.4s; }
.wp-2 .world-photo { animation-duration: 4.6s; animation-delay: -2.9s; }
.wp-3 .world-photo { animation-duration: 3.5s; animation-delay: -0.7s; }
.wp-4 .world-photo { animation-duration: 5.0s; animation-delay: -3.5s; }
.wp-5 .world-photo { animation-duration: 4.1s; animation-delay: -1.9s; }
.wp-6 .world-photo { animation-duration: 4.4s; animation-delay: -2.2s; }
.wp-7 .world-photo { animation-duration: 3.7s; animation-delay: -0.4s; }
@media (prefers-reduced-motion: reduce) { .world-photo { animation: none; } }

/* ── FAIXA 1: topo — 3 fotos espalhadas (longe = pequeno) ── */
.wp-1 { top: 2%;   left: 4%;   width: 110px; height: 104px; --rot: -9deg; }
.wp-8 { top: 2%;   left: 36%;  width: 128px; height: 120px; --rot:  5deg; }
.wp-2 { top: 2%;   right: 4%;  width: 142px; height: 134px; --rot:  7deg; }

/* ── FAIXA 2: meio-superior — esquerda e direita ── */
.wp-9 { top: 24%;  left: 1%;   width: 166px; height: 156px; --rot: -7deg; }
.wp-7 { top: 20%;  right: 2%;  width: 180px; height: 168px; --rot: -4deg; }

/* ── FAIXA 3: meio — esquerda e direita ── */
.wp-3 { top: 50%;  left: 0%;   width: 194px; height: 180px; --rot: -6deg; }
.wp-10{ top: 46%;  right: 3%;  width: 220px; height: 204px; --rot: -3deg; }

/* ── FAIXA 4: meio-inferior — centro-esq e centro-dir ── */
.wp-11{ bottom: 8%;  left: 26%;  width: 260px; height: 240px; --rot:  6deg; }
.wp-6 { bottom: 7%;  right: 13%; width: 246px; height: 228px; --rot:  8deg; }

/* ── FAIXA 5: base — esquerda e direita (perto = grande) ── */
.wp-4 { bottom: -3%; left: 0%;   width: 326px; height: 300px; --rot:  4deg; }
.wp-5 { bottom: -2%; right: 0%;  width: 284px; height: 262px; --rot: -5deg; }

/* Timings dos novos */
.wp-8  .world-photo { animation-duration: 4.3s; animation-delay: -2.1s; }
.wp-9  .world-photo { animation-duration: 3.9s; animation-delay: -1.6s; }
.wp-10 .world-photo { animation-duration: 4.7s; animation-delay: -3.2s; }
.wp-11 .world-photo { animation-duration: 3.6s; animation-delay: -0.9s; }

@media (max-width: 991.98px) {
  .wp-3, .wp-6, .wp-7, .wp-8, .wp-9, .wp-10, .wp-11 { display: none; }
  .wp-1, .wp-2 { width: 116px; height: 110px; }
  .wp-4, .wp-5 { width: 188px; height: 174px; }
}
@media (max-width: 575.98px) {
  .wp-1, .wp-2, .wp-4, .wp-5 { display: none; }
  .world-content { padding: 4rem 1.25rem; }
}

/* ── UTILITÁRIOS ── */
@keyframes fadeSlideUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }

/* ── RESPONSIVO ── */
@media (max-width: 991.98px) {
  /* Header mobile: logo centralizado e padding confortável */
  .header-inner { justify-content: center; }
  .site-header         { padding: 1.1rem 0; }
  .site-header.scrolled { padding: .85rem 0; }

  .hero-row { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-photo-col { order: -1; }
  .hero-photo-frame { width: 240px; height: 320px; }
  .photo-ring-1 { width: 280px; height: 280px; }
  .photo-ring-2 { width: 360px; height: 360px; }
  .floating-badge { display: none; }
  .process-connector { display: none; }
  .process-step, .process-step.reverse { flex-direction: column; text-align: center; }
  .ps-number { width: 54px; height: 54px; min-width: 54px; font-size: 1.2rem; }
  .ps-icon   { margin-inline: auto; }
  .trust-bar-sep   { display: none; }
  .trust-bar-inner { gap: 1rem; }

  /* Footer: logo + instagram lado a lado no mobile */
  .footer-inner {
    grid-template-columns: 1fr auto;
    text-align: left;
    align-items: center;
    gap: 1rem;
  }
  .footer-center { display: none; }
  .footer-logo-area { align-items: flex-start; }
  .footer-right  { text-align: right; }
  .footer-social { justify-content: flex-end; margin-bottom: 0; }
}

@media (max-width: 767.98px) {
  :root { --section-py: 3.5rem; }
  .hero-row { padding-top: 5rem; }
  .hero-photo-frame { width: 200px; height: 270px; }
  .photo-ring-1, .photo-ring-2 { display: none; }
  .hero-title { font-size: 1.6rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-main, .cta-secondary { width: 100%; text-align: center; }
  .form-box { padding: 2rem 1.25rem; }
  .fpb-line { max-width: 40px; }
  .pos-card { padding: 1.5rem; }
  .hero-scroll-hint { display: none; }

  /* Botões: previne overflow horizontal em mobile */
  .btn-gold.btn-lg,
  .btn-orange.btn-lg,
  .btn-outline-primary.btn-lg,
  .btn-outline-white.btn-lg {
    white-space: normal;
    line-height: 1.35;
    max-width: calc(100vw - 3rem);
    padding-inline: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .trust-bar-item span { display: none; }
  .trust-bar-item strong { font-size: .9rem; }
  .trust-bar-item i { font-size: 1.2rem; }

  /* Botões full-width em telas muito pequenas */
  .btn-gold.btn-lg,
  .btn-orange.btn-lg,
  .btn-outline-primary.btn-lg {
    width: 100%;
    max-width: 100%;
  }
}

/* ── OBRIGADO PAGE ── */
.obrigado-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-dark);
  position: relative;
  padding: 2rem 1rem;
}

.obrigado-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(94,47,152,.35) 0%, transparent 65%),
              radial-gradient(ellipse at 75% 70%, rgba(240,102,14,.15) 0%, transparent 55%);
  pointer-events: none;
}

.obrigado-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 32px 64px rgba(0,0,0,.40);
}

.obrigado-check {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(34,197,94,.35);
}
.obrigado-check i {
  font-size: 2.5rem;
  color: #fff;
}

.obrigado-title {
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.obrigado-desc {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.obrigado-countdown-wrap {
  margin-bottom: 1.75rem;
}
.obrigado-redirect-msg {
  color: rgba(255,255,255,.60);
  font-size: .9rem;
  margin-bottom: .6rem;
}
.obrigado-progress {
  height: 4px;
  background: rgba(255,255,255,.12);
  border-radius: 99px;
  overflow: hidden;
}
.obrigado-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 99px;
  transition: width 1s linear;
}

.btn-wa-obrigado {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37,211,102,.35);
  transition: background .2s, transform .2s, box-shadow .2s;
  margin-bottom: 1.25rem;
}
.btn-wa-obrigado:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,211,102,.45);
  color: #fff;
}
.btn-wa-obrigado i { font-size: 1.2rem; }

.obrigado-back-link {
  display: block;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  text-decoration: none;
  transition: color .2s;
}
.obrigado-back-link:hover { color: rgba(255,255,255,.80); }
