/* ============================================================
   PETTER INSTRUTOR — Landing Page CSS
   Agência Aidar | Paleta: Navy #0D1F5C · Laranja #F47920 · Branco
   ============================================================ */

/* 1. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, sans-serif; color: #0D1F5C; background: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* 2. DESIGN TOKENS */
:root {
  --navy:        #0D1F5C;
  --navy-dark:   #080F2E;
  --navy-med:    #0f2470;
  --navy-light:  #1a3080;
  --orange:      #F47920;
  --orange-light:#FF9A45;
  --orange-dark: #D4651A;
  --white:       #FFFFFF;
  --gray-50:     #F8F9FC;
  --gray-100:    #F0F2F8;
  --gray-200:    #E2E6F0;
  --gray-400:    #9CA3B4;
  --gray-600:    #5A6178;
  --gray-800:    #2D3348;
  --green:       #22C55E;
  --red:         #EF4444;

  --g-hero:   linear-gradient(135deg, #080F2E 0%, #0D1F5C 55%, #162580 100%);
  --g-orange: linear-gradient(135deg, #F47920 0%, #FF9A45 100%);
  --g-navy:   linear-gradient(180deg, #0D1F5C 0%, #080F2E 100%);

  --sh-sm:     0 2px 8px rgba(13,31,92,.08);
  --sh-md:     0 8px 24px rgba(13,31,92,.12);
  --sh-lg:     0 16px 48px rgba(13,31,92,.18);
  --sh-xl:     0 24px 64px rgba(13,31,92,.24);
  --sh-orange: 0 8px 32px rgba(244,121,32,.4);
  --sh-orange-lg: 0 16px 48px rgba(244,121,32,.55);
  --sh-green: 0 8px 32px rgba(37,211,102,.4);

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  --tr:      all .3s cubic-bezier(.4,0,.2,1);
  --tr-fast: all .15s ease;
  --tr-slow: all .5s ease;
}

/* 3. TYPOGRAPHY */
h1, h2, h3, h4 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-weight: 700; }
h4 { font-size: clamp(1rem, 1.8vw, 1.4rem); font-weight: 700; }
p { font-family: 'Inter', sans-serif; line-height: 1.7; color: var(--gray-600); }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.section-tag::before { content: ''; display: inline-block; width: 20px; height: 3px; background: var(--orange); border-radius: 2px; }
.section-tag.light { color: rgba(255,255,255,.65); }
.section-tag.light::before { background: rgba(255,255,255,.4); }

.section-header { text-align: center; max-width: 780px; margin: 0 auto 4rem; }
.section-header p { font-size: 1.05rem; margin-top: .9rem; }
.section-header.dark p { color: rgba(255,255,255,.65); }
.section-header.dark h2 { color: white; }

/* 4. LAYOUT */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.sec { padding: 96px 0; }
.sec-sm { padding: 64px 0; }

/* Colors */
.bg-white { background: var(--white); }
.bg-gray  { background: var(--gray-50); }
.bg-navy  { background: var(--navy); }
.bg-dark  { background: var(--navy-dark); }
.bg-orange { background: var(--orange); }

/* Text helpers */
.text-white  { color: var(--white); }
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }

/* 5. BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: clamp(.92rem, 0.95vw, 1rem);
  padding: clamp(12px, 1.2vw, 16px) clamp(18px, 2.4vw, 28px);
  border-radius: var(--r-full); cursor: pointer;
  border: none; transition: var(--tr); white-space: nowrap; letter-spacing: .02em;
  min-width: 140px;
}
.btn-orange {
  background: var(--g-orange); color: var(--white); box-shadow: var(--sh-orange);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: var(--sh-orange-lg); }
.btn-white {
  background: white; color: var(--navy); box-shadow: var(--sh-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-outline {
  background: transparent; color: white; border: 2px solid rgba(255,255,255,.45);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: white; }
.btn-navy { background: var(--navy); color: white; box-shadow: var(--sh-md); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white; box-shadow: var(--sh-green);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,.55); }
.btn-lg { padding: clamp(16px, 1.5vw, 20px) clamp(28px, 3vw, 36px); font-size: clamp(1rem, 1.1vw, 1.15rem); }
.btn-sm { padding: 10px 18px; font-size: .88rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-pulse { animation: pulse-btn 2.2s ease-in-out infinite; }

/* Microcopy */
.microcopy { font-size: .76rem; font-family: 'Inter', sans-serif; color: var(--gray-400); text-align: center; margin-top: 7px; }
.microcopy.light { color: rgba(255,255,255,.4); }
.microcopy-top { font-size: .76rem; font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--green); text-align: center; margin-bottom: 6px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.microcopy-top::before { content: '●'; font-size: .55rem; animation: blink 1.4s ease-in-out infinite; }

/* 6. WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-float-btn {
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.55); cursor: pointer;
  transition: var(--tr); animation: float-wa 3.5s ease-in-out infinite;
  text-decoration: none;
}
.wa-float-btn:hover { transform: scale(1.12); }
.wa-float-btn svg { width: 34px; height: 34px; fill: white; }
.wa-float-label {
  background: var(--orange); color: white; font-family: 'Outfit', sans-serif;
  font-size: .72rem; font-weight: 700; padding: 7px 14px; border-radius: var(--r-full);
  box-shadow: var(--sh-md); white-space: nowrap; animation: fadeInRight .5s ease 1.5s both;
}

/* 7. NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: var(--tr);
}
.navbar.scrolled {
  background: rgba(8,15,46,.96); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); }
.nav-logo-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.15rem; color: white; line-height: 1.1; }
.nav-logo-name span { color: var(--orange); display: block; font-size: .7rem; font-weight: 600; letter-spacing: .08em; }
.nav-links { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.nav-links a { font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.75); transition: var(--tr-fast); padding: 4px 0; }
.nav-links a:hover { color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.botao { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; z-index: 1001; }
.botao span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--tr); }
.botao.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.botao.active span:nth-child(2) { opacity: 0; }
.botao.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================
   SECTION 1: HERO
================================ */
.hero {
  min-height: 100vh; background: var(--g-hero);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .12;
}
.orb-1 { width: 600px; height: 600px; background: var(--orange); top: -150px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: var(--navy-light); bottom: -100px; left: -80px; }
.orb-3 { width: 200px; height: 200px; background: var(--orange-light); top: 40%; left: 30%; opacity: .06; }
.hero-lines {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.015) 0px, rgba(255,255,255,.015) 1px, transparent 1px, transparent 80px);
}
.hero-content { position: relative; z-index: 2; padding-top: 90px; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px;
  align-items: center; min-height: calc(100vh - 90px); padding-bottom: 60px;
}
.hero-announce {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,121,32,.14); border: 1px solid rgba(244,121,32,.3);
  border-radius: var(--r-full); padding: 6px 16px;
  font-family: 'Outfit', sans-serif; font-size: .78rem; font-weight: 700;
  color: var(--orange-light); margin-bottom: 22px; letter-spacing: .05em;
}
.hero-title { color: white; margin-bottom: 18px; }
.hero-title .accent { color: var(--orange); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.72); line-height: 1.75;
  margin-bottom: 36px; max-width: 560px;
}
.hero-cta-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 44px; position: relative; }
.hero-cta-wrap::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 10px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(244,121,32,.2) 0%, transparent 55%);
  filter: blur(32px);
  z-index: 0;
}
.hero-cta-wrap::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(244,121,32,.14) 0%, transparent 60%);
  filter: blur(28px);
  z-index: 0;
}
.hero-cta-row,
.hero-cta-wrap > * { position: relative; z-index: 1; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
}
.trust-item { display: flex; align-items: center; gap: 9px; }
.trust-icon { font-size: 1.5rem; }
.trust-text strong { display: block; color: white; font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800; line-height: 1; }
.trust-text span { font-size: .76rem; color: rgba(255,255,255,.55); font-family: 'Inter', sans-serif; }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

/* Hero visual side */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.hero-img-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img-glow {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,121,32,.2) 0%, transparent 70%);
}
.hero-img-ring {
  position: absolute; width: 390px; height: 390px; border-radius: 50%;
  border: 2px dashed rgba(244,121,32,.2);
  animation: spin-slow 25s linear infinite;
}
.hero-img {
  width: 340px; height: 340px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--orange); box-shadow: 0 0 0 10px rgba(244,121,32,.1), var(--sh-xl);
  animation: float 4.5s ease-in-out infinite; position: relative; z-index: 1;
}
.hero-stats { display: flex; gap: 14px; }
.hero-stat {
  background: rgba(255,255,255,.07); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md);
  padding: 16px 20px; text-align: center; min-width: 100px;
}
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-lbl { font-size: .72rem; color: rgba(255,255,255,.55); font-family: 'Inter', sans-serif; margin-top: 3px; line-height: 1.3; }
.hero-rating {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 14px 18px; width: 100%;
}
.rating-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; color: white; }
.rating-stars { color: #FFD700; font-size: .95rem; letter-spacing: 2px; display: block; }
.rating-lbl { font-size: .72rem; color: rgba(255,255,255,.5); font-family: 'Inter', sans-serif; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.35); font-size: .7rem; font-family: 'Outfit', sans-serif;
  letter-spacing: .1em; animation: bounce 2.2s ease-in-out infinite; text-transform: uppercase;
}
.hero-scroll svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ================================
   SECTION 2: IDENTIFICAÇÃO
================================ */
.identification { background: var(--gray-50); }
.pain-intro {
  text-align: center; max-width: 680px; margin: 0 auto 48px;
}
.pain-intro h2 { color: var(--navy); margin-bottom: 12px; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 48px; }
.pain-card {
  background: white; border-radius: var(--r-lg); padding: 24px 22px;
  border: 1px solid var(--gray-200); box-shadow: var(--sh-sm);
  display: flex; align-items: flex-start; gap: 14px;
  transition: var(--tr); cursor: default;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: rgba(244,121,32,.35); }
.pain-emoji { font-size: 2rem; flex-shrink: 0; }
.pain-card h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.pain-card p { font-size: .85rem; line-height: 1.55; }
.identification-cta { text-align: center; }
.id-note { display: inline-flex; align-items: center; gap: 8px; background: rgba(244,121,32,.08); border: 1px solid rgba(244,121,32,.2); border-radius: var(--r-full); padding: 10px 20px; font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 600; color: var(--orange); margin-bottom: 24px; }

/* ================================
   SECTION 3: CUSTO DA INAÇÃO
================================ */
.cost-sec { background: var(--navy-dark); }
.cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cost-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg); padding: 32px 24px; text-align: center; transition: var(--tr);
}
.cost-card:hover { background: rgba(244,121,32,.08); border-color: rgba(244,121,32,.25); transform: translateY(-4px); }
.cost-icon { font-size: 3rem; display: block; margin-bottom: 16px; }
.cost-card h4 { color: white; font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.cost-card p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.6; }

/* ================================
   SECTION 4: O SONHO
================================ */
.dream-sec { background: white; }
.dream-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.dream-items { display: flex; flex-direction: column; gap: 18px; }
.dream-item {
  display: flex; align-items: center; gap: 18px; padding: 18px 22px;
  border-radius: var(--r-md); background: var(--gray-50);
  border-left: 4px solid var(--orange); transition: var(--tr);
}
.dream-item:hover { background: rgba(244,121,32,.05); transform: translateX(5px); }
.dream-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(244,121,32,.1); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; flex-shrink: 0; }
.dream-item h4 { color: var(--navy); font-size: 1.15rem; margin-bottom: 3px; }
.dream-item p { font-size: .87rem; }
.dream-img-block { position: relative; }
.dream-img { border-radius: var(--r-xl); width: 100%; max-height: 500px; object-fit: cover; box-shadow: var(--sh-xl); }
.dream-float {
  position: absolute; bottom: -22px; left: -22px; background: white;
  border-radius: var(--r-md); padding: 16px 20px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 12px; border: 1px solid var(--gray-200);
}
.dream-float-icon { font-size: 2.2rem; }
.dream-float-text strong { display: block; color: var(--navy); font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 900; line-height: 1; }
.dream-float-text span { font-size: .75rem; color: var(--gray-400); font-family: 'Inter', sans-serif; }

/* ================================
   SECTION 5: HISTÓRIA PIXAR
================================ */
.story-sec { background: var(--gray-50); }
.pixar-timeline { max-width: 780px; margin: 0 auto; position: relative; }
.pixar-timeline::before { content: ''; position: absolute; left: 27px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--orange) 0%, rgba(244,121,32,.1) 100%); }
.pixar-step { display: flex; gap: 26px; margin-bottom: 36px; }
.pixar-dot {
  width: 56px; height: 56px; border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  flex-shrink: 0; box-shadow: var(--sh-orange); z-index: 1;
}
.pixar-content {
  flex: 1; background: white; border-radius: var(--r-md); padding: 22px 26px;
  border: 1px solid var(--gray-200); box-shadow: var(--sh-sm); transition: var(--tr);
}
.pixar-content:hover { border-color: rgba(244,121,32,.3); box-shadow: var(--sh-md); }
.pixar-lbl { font-family: 'Outfit', sans-serif; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.pixar-content h4 { color: var(--navy); font-size: 1.2rem; margin-bottom: 8px; }
.pixar-content p { font-size: .92rem; line-height: 1.7; }

/* ================================
   SECTION 6: MISSÃO
================================ */
.mission-sec { background: var(--navy); }
.mission-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 80px; align-items: center; }
.mission-img-wrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.mission-img-wrap::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,121,32,.18) 0%, transparent 62%);
  z-index: 0;
}
.mission-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(244,121,32,.25);
  z-index: 1;
}
.mission-img {
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 0 0 10px rgba(244,121,32,.08), var(--sh-xl);
  max-height: 520px;
  position: relative;
  z-index: 2;
  animation: float 4.5s ease-in-out infinite;
  mix-blend-mode: multiply;
}
.mission-badge {
  position: absolute; top: -20px; right: -20px; width: 100px; height: 100px; border-radius: 50%;
  background: var(--orange); display: flex; flex-direction: column; align-items: center;
  justify-content: center; box-shadow: var(--sh-orange); text-align: center;
}
.mission-badge .num { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900; color: white; line-height: 1; }
.mission-badge .lbl { font-size: .56rem; color: rgba(255,255,255,.85); font-family: 'Inter', sans-serif; line-height: 1.3; padding: 0 6px; }
.mission-text h2 { color: white; margin-bottom: 22px; }
.mission-text p { color: rgba(255,255,255,.72); font-size: 1rem; margin-bottom: 18px; }
.mission-quote {
  background: rgba(244,121,32,.12); border-left: 4px solid var(--orange);
  border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 18px 22px; margin: 28px 0;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; color: white; font-style: italic;
}
.mission-checks { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.mission-check {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.82); font-family: 'Outfit', sans-serif; font-size: .92rem;
}
.mission-check::before {
  content: '✓'; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(244,121,32,.18); border: 1px solid rgba(244,121,32,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-weight: 800; font-size: .78rem; flex-shrink: 0;
  line-height: 26px; text-align: center;
}

/* ================================
   SECTION 7: AUTORIDADE
================================ */
.auth-sec { background: white; }
.auth-numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 56px; }
.auth-num-card {
  text-align: center; padding: 32px 18px; border-radius: var(--r-lg);
  border: 1px solid var(--gray-200); transition: var(--tr);
}
.auth-num-card:hover { border-color: var(--orange); box-shadow: var(--sh-md); transform: translateY(-4px); }
.auth-num-card .big { font-family: 'Barlow Condensed', sans-serif; font-size: 3.8rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.auth-num-card .lbl { font-size: .88rem; color: var(--gray-600); line-height: 1.4; }
.auth-certs { background: var(--gray-50); border-radius: var(--r-lg); padding: 40px; border: 1px solid var(--gray-200); margin-bottom: 40px; }
.auth-certs h3 { color: var(--navy); margin-bottom: 28px; }
.cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.cert-item { display: flex; align-items: center; gap: 12px; font-family: 'Outfit', sans-serif; font-size: .94rem; font-weight: 500; color: var(--navy); }
.cert-item::before { content: '🎓'; font-size: 1.3rem; }
.auth-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.auth-photo { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.auth-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.auth-photo:hover img { transform: scale(1.06); }
.auth-bio {
  background: var(--g-hero); border-radius: var(--r-xl); padding: 40px 48px;
  margin-top: 40px; position: relative; overflow: hidden;
}
.auth-bio::before { content: '"'; position: absolute; top: -20px; left: 30px; font-size: 10rem; color: rgba(255,255,255,.05); font-family: 'Barlow Condensed', sans-serif; line-height: 1; }
.auth-bio p { color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.75; position: relative; z-index: 1; }
.auth-bio-footer { display: flex; align-items: center; gap: 16px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.auth-bio-img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); }
.auth-bio-name strong { display: block; color: white; font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; }
.auth-bio-name span { font-size: .78rem; color: rgba(255,255,255,.5); font-family: 'Inter', sans-serif; }

/* ================================
   SECTION 8: MÉTODO AIDAR
================================ */
.method-sec { background: var(--gray-50); }
.aidar-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.aidar-card {
  background: white; border-radius: var(--r-lg); padding: 28px 18px;
  border: 1px solid var(--gray-200); text-align: center; transition: var(--tr); position: relative; overflow: hidden;
}
.aidar-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--g-orange); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.aidar-card:hover::after { transform: scaleX(1); }
.aidar-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--orange); }
.aidar-letter { font-family: 'Barlow Condensed', sans-serif; font-size: 4.5rem; font-weight: 900; color: var(--orange); line-height: 1; }
.aidar-word { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.aidar-goal { font-size: .75rem; color: var(--gray-400); font-family: 'Outfit', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; }
.aidar-items { display: flex; flex-direction: column; gap: 5px; }
.aidar-items span { font-size: .77rem; color: var(--gray-600); background: var(--gray-50); border-radius: var(--r-sm); padding: 5px 8px; line-height: 1.4; }

/* ================================
   SECTION 9: PROCESSO CNH
================================ */
.process-sec { background: white; }
.process-list { max-width: 820px; margin: 0 auto; }
.process-item { display: grid; grid-template-columns: 64px 1fr; position: relative; }
.process-item::after { content: ''; position: absolute; left: 31px; top: 62px; bottom: -8px; width: 2px; background: var(--gray-200); }
.process-item:last-child::after { display: none; }
.process-num-col { display: flex; flex-direction: column; align-items: center; padding-right: 24px; }
.process-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--orange); color: white; font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-orange); flex-shrink: 0; position: relative; z-index: 1; }
.process-body { background: var(--gray-50); border-radius: var(--r-md); padding: 22px 26px; margin-bottom: 16px; border: 1px solid var(--gray-200); transition: var(--tr); }
.process-body:hover { border-color: var(--orange); box-shadow: var(--sh-sm); }
.process-body-icon { font-size: 1.6rem; margin-bottom: 6px; }
.process-body h4 { color: var(--navy); margin-bottom: 6px; font-size: 1.1rem; }
.process-body p { font-size: .88rem; color: var(--gray-600); }

/* ================================
   SECTION 10: SERVIÇOS
================================ */
.services-sec { background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: white; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--gray-200); box-shadow: var(--sh-sm); transition: var(--tr); display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); border-color: var(--orange); }
.svc-img { width: 100%; height: 195px; object-fit: cover; }
.svc-body { padding: 26px 22px; flex: 1; display: flex; flex-direction: column; }
.svc-tag { display: inline-block; background: rgba(244,121,32,.1); color: var(--orange); font-family: 'Outfit', sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: var(--r-full); margin-bottom: 10px; }
.svc-body h4 { color: var(--navy); margin-bottom: 9px; font-size: 1.2rem; }
.svc-body p { font-size: .87rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 12px; flex: 1; }
.svc-benefit { display: flex; align-items: flex-start; gap: 7px; font-family: 'Outfit', sans-serif; font-size: .82rem; color: var(--green); font-weight: 600; background: rgba(34,197,94,.07); border-radius: var(--r-sm); padding: 9px 12px; margin-bottom: 18px; }
.svc-benefit::before { content: '✓'; font-weight: 900; flex-shrink: 0; }
.svc-micro { font-size: .72rem; color: var(--gray-400); text-align: center; margin-top: 7px; }

/* ================================
   SECTION 11: BENEFÍCIOS
================================ */
.benefits-sec { background: var(--navy-dark); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.benefit-item { text-align: center; padding: 40px 22px; }
.benefit-icon-wrap {
  width: 82px; height: 82px; border-radius: 50%;
  background: rgba(244,121,32,.1); border: 2px solid rgba(244,121,32,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.3rem; margin: 0 auto 24px; transition: var(--tr);
}
.benefit-item:hover .benefit-icon-wrap { background: rgba(244,121,32,.2); transform: scale(1.1); }
.benefit-item h4 { color: white; font-size: 1.25rem; margin-bottom: 12px; }
.benefit-item p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.65; }

/* ================================
   SECTION 12: DIFERENCIAIS
================================ */
.diff-sec { background: white; }
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.diff-card { display: flex; gap: 18px; background: var(--gray-50); border-radius: var(--r-lg); padding: 26px; border: 1px solid var(--gray-200); transition: var(--tr); }
.diff-card:hover { background: white; border-color: var(--orange); box-shadow: var(--sh-md); }
.diff-icon-box { width: 50px; height: 50px; border-radius: var(--r-md); background: rgba(244,121,32,.1); display: flex; align-items: center; justify-content: center; font-size: 1.55rem; flex-shrink: 0; }
.diff-card h4 { color: var(--navy); margin-bottom: 7px; font-size: 1.08rem; }
.diff-card p { font-size: .87rem; color: var(--gray-600); }

/* ================================
   SECTION 13: QUEBRA DE OBJEÇÕES
================================ */
.obj-sec { background: var(--gray-50); }
.obj-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.obj-table thead { background: var(--navy); }
.obj-table thead th { padding: 18px 24px; text-align: left; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; color: white; }
.obj-table thead th:first-child { color: var(--orange); }
.obj-table tbody tr { background: white; transition: var(--tr-fast); }
.obj-table tbody tr:nth-child(even) { background: var(--gray-50); }
.obj-table tbody tr:hover { background: rgba(244,121,32,.03); }
.obj-table td { padding: 18px 24px; font-size: .92rem; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
.obj-table tbody tr:last-child td { border-bottom: none; }
.obj-q { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--navy); display: flex; align-items: flex-start; gap: 8px; }
.obj-q::before { content: '❝'; color: var(--orange); flex-shrink: 0; }
.obj-a { color: var(--gray-600); line-height: 1.6; }
.obj-proof { font-family: 'Outfit', sans-serif; font-size: .82rem; color: var(--green); font-weight: 700; }

/* ================================
   SECTION 14: PROVA SOCIAL
================================ */
.social-proof-sec { background: var(--navy); }
.sp-grid { display: block; }
.sp-vids { display: flex; flex-direction: column; gap: 24px; }
.vid-label { font-family: 'Outfit', sans-serif; font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.vid-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-xl); background: #000; }
.vid-wrap iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
.vid-wrap-short { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-xl); background: #000; }
.vid-wrap-short iframe { width: 100%; aspect-ratio: 9/16; max-height: 300px; display: block; border: none; }
.sp-social { display: flex; flex-direction: column; gap: 14px; }
#depoimentos > div > div.sp-grid > div.sp-social.rev-r.on { display: block; }
#depoimentos > div > div.sp-grid > div.sp-social.rev-r.on > h3 { margin-top: 50px; }
.sp-soc-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; color: white; margin-bottom: 8px; }
.review-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-bottom: 25px; }
.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 8px;
  min-height: 260px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.review-card img { width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--r-md) - 4px); display: block; }
.social-follow { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.social-follow-title { font-family: 'Outfit', sans-serif; font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.7); letter-spacing: .08em; text-transform: uppercase; }
.social-follow-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 0; }
.social-follow-links.footer-soc { margin-top: 0; }
.social-follow-links.footer-soc .social-link {
  flex: 1 1 calc(25% - 10px);
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-full);
  padding: 16px 20px;
  transition: var(--tr);
  text-decoration: none;
}
.social-follow-links.footer-soc .social-link:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); transform: translateY(-2px); }
.social-follow-links.footer-soc .sl-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.social-follow-links.footer-soc .sl-icon img { width: 28px; height: 28px; object-fit: contain; }
.sl-icon { font-size: 2rem; flex-shrink: 0; }
.sl-name { display: block; color: white; font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 700; }
.sl-handle { font-size: .78rem; color: rgba(255,255,255,.45); font-family: 'Inter', sans-serif; }
.tiktok-section { margin-top: 40px; }

@media (max-width: 1120px) {
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .social-follow-links .social-link { flex: 1 1 calc(50% - 10px); }
}

@media (max-width: 720px) {
  .review-grid { grid-template-columns: 1fr; }
  .social-follow-links { justify-content: center; }
  .social-follow-links .social-link { flex: 1 1 100%; }
}
.tiktok-wrapper { display: flex; justify-content: center; }
.tiktok-wrapper blockquote { max-width: 100% !important; }

/* ================================
   SECTION 15: CASOS REAIS
================================ */
.cases-sec { background: var(--gray-50); }
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.case-card {
  background: white; border-radius: var(--r-xl); padding: 34px;
  border: 1px solid var(--gray-200); box-shadow: var(--sh-sm);
  transition: var(--tr); position: relative; overflow: hidden;
}
.case-card::before { content: '"'; position: absolute; top: -15px; left: 22px; font-size: 9rem; color: var(--orange); opacity: .07; font-family: 'Barlow Condensed', sans-serif; line-height: 1; }
.case-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--orange); }
.case-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(244,121,32,.1); color: var(--orange); font-family: 'Outfit', sans-serif; font-size: .75rem; font-weight: 800; padding: 4px 12px; border-radius: var(--r-full); margin-bottom: 16px; }
.case-section-lbl { font-family: 'Outfit', sans-serif; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 4px; }
.case-section-lbl.problem { color: var(--red); }
.case-section-lbl.result { color: var(--green); }
.case-card h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: 6px; font-family: 'Outfit', sans-serif; font-weight: 700; }
.case-card p { font-size: .88rem; color: var(--gray-600); line-height: 1.6; }
.case-result { display: flex; align-items: flex-start; gap: 8px; padding: 12px 14px; background: rgba(34,197,94,.07); border-radius: var(--r-sm); margin-top: 14px; border-left: 3px solid var(--green); }
.case-result span { font-family: 'Outfit', sans-serif; font-size: .88rem; color: #16A34A; font-weight: 600; line-height: 1.5; }
.case-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--gray-200); }
.case-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; color: white; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.2rem; overflow: hidden; flex-shrink: 0; }
.case-avatar img { width: 100%; height: 100%; object-fit: cover; }
.case-author strong { display: block; color: var(--navy); font-family: 'Outfit', sans-serif; font-size: .92rem; }
.case-author span { font-size: .76rem; color: var(--gray-400); }
.stars-small { color: #FFD700; font-size: .8rem; letter-spacing: 1px; }
.case-video-wrap { margin-top: 48px; }
.case-video-wrap h3 { text-align: center; color: var(--navy); margin-bottom: 24px; }
.case-vid-inner { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); max-width: 700px; margin: 0 auto; }
.case-vid-inner iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }

/* ================================
   SECTION 16: ANTES X DEPOIS
================================ */
.ba-sec { background: white; }
.ba-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: center; }
.before-col { background: rgba(239,68,68,.04); border: 2px solid rgba(239,68,68,.18); border-radius: var(--r-xl); padding: 36px 30px; }
.after-col  { background: rgba(34,197,94,.04); border: 2px solid rgba(34,197,94,.22); border-radius: var(--r-xl); padding: 36px 30px; }
.ba-head { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 26px; padding-bottom: 16px; border-bottom: 2px solid; }
.before-col .ba-head { color: var(--red); border-color: rgba(239,68,68,.2); }
.after-col  .ba-head { color: var(--green); border-color: rgba(34,197,94,.2); }
.ba-row { display: flex; align-items: center; gap: 11px; padding: 11px 0; border-bottom: 1px solid rgba(0,0,0,.06); font-family: 'Outfit', sans-serif; font-size: .92rem; font-weight: 500; }
.ba-row:last-child { border-bottom: none; }
.before-col .ba-row { color: #DC2626; }
.after-col  .ba-row { color: #16A34A; }
.before-col .ba-row::before { content: '✗'; font-weight: 900; flex-shrink: 0; }
.after-col  .ba-row::before { content: '✓'; font-weight: 900; flex-shrink: 0; }
.ba-mid { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--gray-400); font-size: .72rem; font-family: 'Outfit', sans-serif; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.ba-arrow-icon { font-size: 2.5rem; color: var(--orange); animation: pulse-btn 2s ease-in-out infinite; }

/* ================================
   SECTION 17: FAQ
================================ */
.faq-sec { background: var(--gray-50); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: white; border: 1px solid var(--gray-200); border-radius: var(--r-md); overflow: hidden; transition: border-color .25s; }
.faq-item.open { border-color: var(--orange); box-shadow: var(--sh-sm); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--navy); font-size: .93rem; gap: 14px; transition: background .2s; }
.faq-q:hover { background: var(--gray-50); }
.faq-item.open .faq-q { background: rgba(244,121,32,.04); color: var(--orange); }
.faq-tog { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; transition: var(--tr); color: var(--navy); }
.faq-item.open .faq-tog { background: var(--orange); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 350px; padding: 0 22px 18px; }
.faq-a p { font-size: .9rem; color: var(--gray-600); line-height: 1.75; }

/* ================================
   SECTION 18: GARANTIA
================================ */
.guarantee-sec { background: var(--navy); }
.guarantee-box {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: rgba(255,255,255,.05); border: 2px solid rgba(244,121,32,.25);
  border-radius: var(--r-xl); padding: 64px 52px; position: relative; overflow: hidden;
}
.guarantee-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top, rgba(244,121,32,.08) 0%, transparent 65%); }
.guarantee-icon { font-size: 5.5rem; display: block; margin-bottom: 24px; animation: float 3.5s ease-in-out infinite; position: relative; z-index: 1; }
.guarantee-box h2 { color: white; margin-bottom: 20px; position: relative; z-index: 1; }
.guarantee-box p { color: rgba(255,255,255,.68); font-size: 1.05rem; line-height: 1.75; max-width: 520px; margin: 0 auto; position: relative; z-index: 1; }

/* ================================
   SECTION 19: ESCASSEZ
================================ */
.scarcity-sec { background: var(--orange); position: relative; overflow: hidden; }
.scarcity-sec::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #D4651A 0%, #F47920 50%, #FF9A45 100%); opacity: .6; }
.scarcity-inner { text-align: center; padding: 88px 0; position: relative; z-index: 1; }
.scarcity-inner h2 { color: white; margin-bottom: 14px; }
.scarcity-inner > p { color: rgba(255,255,255,.88); font-size: 1.1rem; margin-bottom: 44px; }
.scarcity-row { display: flex; align-items: center; justify-content: center; gap: 44px; margin-bottom: 44px; flex-wrap: wrap; }
.sc-block { text-align: center; }
.sc-big { font-family: 'Barlow Condensed', sans-serif; font-size: 5.5rem; font-weight: 900; color: white; line-height: 1; }
.sc-lbl { font-family: 'Outfit', sans-serif; font-size: .9rem; color: rgba(255,255,255,.8); margin-top: 6px; font-weight: 500; }
.sc-sep { font-size: 3.5rem; color: rgba(255,255,255,.3); font-family: 'Barlow Condensed', sans-serif; }
.progress-wrap { max-width: 380px; margin: 0 auto 44px; }
.prog-labels { display: flex; justify-content: space-between; color: rgba(255,255,255,.8); font-size: .82rem; font-family: 'Outfit', sans-serif; font-weight: 600; margin-bottom: 10px; }
.prog-track { height: 13px; background: rgba(255,255,255,.2); border-radius: var(--r-full); overflow: hidden; }
.prog-fill { height: 100%; background: white; border-radius: var(--r-full); width: 67%; position: relative; overflow: hidden; }
.prog-fill::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent); animation: shimmer 2s infinite; }
.countdown { display: flex; gap: 12px; justify-content: center; margin-bottom: 44px; }
.cd-block { text-align: center; background: rgba(255,255,255,.15); border-radius: var(--r-md); padding: 14px 22px; min-width: 78px; }
.cd-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 900; color: white; line-height: 1; }
.cd-sep { font-size: 2.8rem; color: rgba(255,255,255,.5); font-family: 'Barlow Condensed', sans-serif; font-weight: 900; align-self: center; padding-bottom: 4px; }
.cd-unit { font-size: .65rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; font-family: 'Outfit', sans-serif; }

/* ================================
   SECTION 20: CTA FINAL
================================ */
.cta-final-sec { background: var(--navy-dark); }
.cta-final-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-final-inner h2 { color: white; margin-bottom: 18px; }
.cta-final-inner p { color: rgba(255,255,255,.68); font-size: 1.05rem; line-height: 1.75; margin-bottom: 44px; }
.cta-final-btns { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 44px; }
.cta-or { color: rgba(255,255,255,.35); font-family: 'Outfit', sans-serif; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.cta-final-form-link { font-family: 'Outfit', sans-serif; font-size: .88rem; color: rgba(255,255,255,.5); }
.cta-final-form-link a { color: var(--orange-light); text-decoration: underline; text-underline-offset: 3px; }
.cta-checklist { display: flex; flex-wrap: wrap; gap: 20px 40px; justify-content: center; padding-top: 44px; border-top: 1px solid rgba(255,255,255,.08); }
.cta-check { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.65); font-family: 'Outfit', sans-serif; font-size: .88rem; }
.cta-check::before { content: '✓'; color: var(--green); font-weight: 900; }

/* ================================
   SECTION 21: RODAPÉ
================================ */
.footer { background: #040A1C; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 52px; }
.footer-brand img { width: 58px; margin-bottom: 16px; border-radius: 50%; border: 2px solid var(--orange); }
.footer-brand h3 { color: white; font-size: 1.35rem; margin-bottom: 8px; }
.footer-brand p { font-size: .87rem; color: rgba(255,255,255,.38); line-height: 1.65; }
.footer-soc { display: flex; gap: 10px; margin-top: 22px; }
.footer-soc a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--tr-fast); text-decoration: none; color: white; }
.footer-soc a:hover { background: var(--orange); border-color: var(--orange); color: white; }
.footer-soc a svg { width: 16px; height: 16px; display: block; }
.footer-soc a:nth-child(1):hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.footer-soc a:nth-child(2):hover { background: #000000; border-color: transparent; }
.footer-soc a:nth-child(3):hover { background: #FF0000; border-color: transparent; }
.footer-soc a:nth-child(4):hover { background: #4285F4; border-color: transparent; }
.footer-soc a:nth-child(5):hover { background: #25D366; border-color: transparent; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { color: rgba(255,255,255,.45); font-size: .88rem; font-family: 'Inter', sans-serif; transition: var(--tr-fast); }
.footer-col ul a:hover { color: var(--orange); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.42); font-size: .85rem; font-family: 'Inter', sans-serif; margin-bottom: 12px; line-height: 1.5; }
.footer-contact-row .ic { font-size: .95rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255,255,255,.05); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); font-family: 'Inter', sans-serif; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.25); font-family: 'Inter', sans-serif; transition: var(--tr-fast); }
.footer-bottom-links a:hover { color: var(--orange); }
.footer-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .75rem; color: rgba(255,255,255,.2); font-family: 'Outfit', sans-serif; }

/* ================================
   ANIMATIONS
================================ */
@keyframes float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)} }
@keyframes float-wa { 0%,100%{transform:translateY(0) rotate(0)}50%{transform:translateY(-6px) rotate(5deg)} }
@keyframes spin-slow { from{transform:rotate(0)}to{transform:rotate(360deg)} }
@keyframes pulse-btn { 0%,100%{box-shadow:var(--sh-orange)}50%{box-shadow:var(--sh-orange-lg)} }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(7px)} }
@keyframes shimmer { 0%{left:-100%}100%{left:100%} }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(12px)}to{opacity:1;transform:translateX(0)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)} }

/* Scroll Reveal */
.rev { opacity:0; transform:translateY(28px); transition:opacity .65s ease,transform .65s ease; }
.rev.on { opacity:1; transform:translateY(0); }
.rev-l { opacity:0; transform:translateX(-28px); transition:opacity .65s ease,transform .65s ease; }
.rev-l.on { opacity:1; transform:translateX(0); }
.rev-r { opacity:0; transform:translateX(28px); transition:opacity .65s ease,transform .65s ease; }
.rev-r.on { opacity:1; transform:translateX(0); }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}.d5{transition-delay:.5s}.d6{transition-delay:.6s}

/* ================================
   RESPONSIVE
================================ */
@media(max-width:1100px){
  .hero-grid{grid-template-columns:1fr;text-align:center}
  .hero-sub{margin:0 auto 36px;max-width:100%}
  .hero-cta-wrap{align-items:center}
  .hero-visual{display:none}
  .hero-trust{justify-content:center}
  .aidar-grid{grid-template-columns:repeat(3,1fr)}
  .auth-numbers{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .sp-grid{grid-template-columns:1fr}
  .review-grid{grid-template-columns:1fr}
  .mission-grid{grid-template-columns:1fr}
  .dream-grid{grid-template-columns:1fr}
  .case-video-wrap{margin-top:32px}
  .case-vid-inner{max-width:100%}
}
@media(max-width:768px){
  .container{padding:0 18px}
  .sec{padding:64px 0}
  .nav-inner{flex-wrap:wrap;align-items:center;justify-content:space-between;}
  .nav-logo-name{font-size:1rem;}
  .nav-logo-name span{font-size:.65rem;}
  .nav-links{display:none;}
  .nav-links.mob-open{display:flex;flex-direction:column;position:fixed;inset:0;background:var(--navy-dark);z-index:999;align-items:center;justify-content:center;gap:28px;padding:120px 24px 32px;}
  .nav-links.mob-open a{font-size:1.35rem;line-height:1.4;text-align:center;}
  .nav-cta{width:100%;justify-content:center;}
  .nav-cta .btn{min-width:170px;}
  .botao{display:flex}
  .pain-grid,.cost-grid,.benefits-grid,.services-grid{grid-template-columns:1fr}
  .diff-grid,.cases-grid{grid-template-columns:1fr}
  .aidar-grid{grid-template-columns:1fr 1fr}
  .ba-grid{grid-template-columns:1fr;display:flex;flex-direction:column}
  .ba-mid{flex-direction:row}
  .cert-grid{grid-template-columns:1fr}
  .auth-photos{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
  .scarcity-row{flex-direction:column;gap:24px}
  .sc-sep{display:none}
  .hero-cta-row{flex-direction:column;width:100%}
  .hero-cta-row .btn{width:100%;justify-content:center}
  .btn{width:100%;max-width:100%;}
  .btn-lg{padding:16px 22px;}
  .hero-cta-wrap::before,.hero-cta-wrap::after{display:none}
  .guarantee-box{padding:40px 24px}
  .auth-bio{padding:30px 24px}
  .mission-badge{width:80px;height:80px;top:-10px;right:-10px}
  .mission-badge .num{font-size:1.5rem}
  .footer-bottom{flex-direction:column;text-align:center}
  .dream-float{left:-10px;bottom:-10px}
  .obj-table{font-size:.82rem}
  .obj-table td,.obj-table th{padding:12px 14px}
  .review-grid{grid-template-columns:1fr}
  .social-follow-links.footer-soc .social-link{flex:1 1 100%;min-width:0}
  .vid-wrap,.vid-wrap-short,.case-vid-inner,.tiktok-wrapper{width:100%;max-width:100%}
  .vid-wrap iframe,.vid-wrap-short iframe,.case-vid-inner iframe,.tiktok-wrapper iframe,video{width:100%;height:auto}
  .mission-img-wrap::before,.mission-img-wrap::after{width:320px;height:320px}
  .mission-img{max-height:420px}
}
@media(max-width:480px){
  h1{font-size:2.1rem}h2{font-size:1.7rem}
  .aidar-grid{grid-template-columns:1fr}
  .auth-numbers{grid-template-columns:1fr 1fr}
  .wa-float{bottom:16px;right:16px}
  .wa-float-label{display:none}
  .countdown{gap:6px}
  .cd-block{min-width:60px;padding:10px 14px}
  .cd-num{font-size:2.2rem}
  .cd-sep{font-size:2.2rem}
  .mission-grid{grid-template-columns:1fr}
  .sp-grid{grid-template-columns:1fr}
  .review-grid{grid-template-columns:1fr}
  .footer-soc{justify-content:center}
}
