/* ============================================================
   LP LUCAS PERSONAL — Treinamento de Força Infantil
   ============================================================
   Tema: Light Profissional (default) + Dark Premium (toggle)
   Accent: Laranja vibrante #FF6B35 (energia, esporte, juventude)
   Tipografia: Plus Jakarta Sans (heading) + Outfit (body)
   ============================================================ */


/* ============================================================
   TOKENS — Cores (Light default)
   ============================================================ */
:root {
  /* Backgrounds */
  --bg:           #ffffff;
  --bg-alt:       #FAF7F2;        /* cream sutil para alternar seções */
  --bg-card:      #ffffff;
  --bg-elevated:  #F4EFE7;
  --bg-dark:      #14110D;        /* footer / CTA banner inversion */

  /* Foreground */
  --fg:           #14110D;        /* preto quente */
  --fg-muted:     #56524A;
  --fg-subtle:    #8B847A;
  --fg-inverse:   #ffffff;

  /* Border */
  --border:       #E8E2D5;
  --border-soft:  rgba(20, 17, 13, 0.08);

  /* Accent — laranja vibrante */
  --accent:       #FF6B35;
  --accent-hover: #E85A28;
  --accent-soft:  rgba(255, 107, 53, 0.10);
  --accent-glow:  0 8px 32px rgba(255, 107, 53, 0.28);

  /* Secondary */
  --cta:          #25D366;        /* WhatsApp */
  --cta-hover:    #1ebb5a;

  /* Sombras */
  --shadow-sm:    0 2px 8px rgba(20, 17, 13, 0.06);
  --shadow-md:    0 8px 32px rgba(20, 17, 13, 0.10);
  --shadow-lg:    0 20px 60px rgba(20, 17, 13, 0.14);
  --shadow-glow:  0 0 40px -10px var(--accent);

  /* Layout */
  --header-h:     76px;
  --container:    1240px;
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    24px;
}

/* DARK */
.dark {
  --bg:           #14110D;
  --bg-alt:       #1C1814;
  --bg-card:      #1F1B16;
  --bg-elevated:  #2A241D;
  --bg-dark:      #0A0805;

  --fg:           #F5EFE3;
  --fg-muted:     #B0A89A;
  --fg-subtle:    #7A7367;
  --fg-inverse:   #14110D;

  --border:       #2D2820;
  --border-soft:  rgba(255, 255, 255, 0.06);

  --accent-soft:  rgba(255, 107, 53, 0.14);

  --shadow-sm:    0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md:    0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg:    0 20px 60px rgba(0, 0, 0, 0.5);
}


/* ============================================================
   TOKENS — Tipografia
   ============================================================ */
:root {
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'Outfit', system-ui, -apple-system, sans-serif;

  --ls-label:     0.22em;
  --ls-button:    0.06em;
  --ls-heading:   -0.012em;

  --fs-display:   clamp(36px, 5vw, 64px);
  --fs-hero:      clamp(32px, 4.4vw, 58px);
  --fs-h1:        clamp(28px, 3.6vw, 44px);
  --fs-h2:        clamp(26px, 3.4vw, 42px);
  --fs-h3:        clamp(20px, 2.2vw, 26px);
  --fs-h4:        clamp(17px, 1.6vw, 19px);

  --fs-body-lg:   clamp(17px, 1.3vw, 19px);
  --fs-body:      clamp(15px, 1.1vw, 16.5px);
  --fs-body-sm:   14px;
  --fs-label:     11.5px;

  --lh-tight:     1.05;
  --lh-snug:      1.18;
  --lh-normal:    1.65;
  --lh-relaxed:   1.75;
}


/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
  transition: background-color .35s ease, color .35s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-heading);
  color: var(--fg);
}
h1 { font-size: var(--fs-hero); line-height: var(--lh-tight); font-weight: 800; }
h2 { font-size: var(--fs-h2); font-weight: 700; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
p  { color: var(--fg-muted); }

::selection { background: var(--accent); color: #fff; }


/* ============================================================
   CONTAINER + SECTIONS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

.section    { padding: 110px 0; }
.section-sm { padding: 72px 0; }
.section-lg { padding: 140px 0; }
.bg-alt     { background: var(--bg-alt); }
.bg-card    { background: var(--bg-card); }

@media (max-width: 768px) {
  .section    { padding: 72px 0; }
  .section-sm { padding: 52px 0; }
  .section-lg { padding: 90px 0; }
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: var(--fs-h2);
  margin-bottom: 16px;
  letter-spacing: -0.018em;
}

.section-sub {
  font-size: var(--fs-body-lg);
  color: var(--fg-muted);
  max-width: 620px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.text-accent { color: var(--accent); font-style: normal; }
.text-muted  { color: var(--fg-muted); }


/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  line-height: 1.25;
  min-height: 52px;
  max-width: 100%;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .btn {
    white-space: normal;
    padding: 16px 20px;
    font-size: 13px;
    letter-spacing: 0.04em;
    gap: 8px;
    width: 100%;
    display: flex;
    min-height: 54px;
  }
  .btn--sm { padding: 16px 16px; font-size: 12.5px; }
  .btn--lg { padding: 16px 22px; font-size: 13.5px; }
  .btn--xl { padding: 16px 24px; font-size: 14.5px; }
  .btn svg { flex-shrink: 0; }

  /* exceções: header (mantém botão pequeno inline, altura compacta) */
  .header__actions .btn {
    width: auto;
    display: inline-flex;
    min-height: 0;
    padding: 11px 14px;
    font-size: 12px;
  }
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 24px var(--accent-soft), 0 2px 6px rgba(255, 107, 53, 0.18);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.32);
}

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.22);
}
.btn--whatsapp:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
}

.btn--sm { padding: 15px 18px; font-size: 13px; }
.btn--lg { padding: 15px 32px; font-size: 14.5px; }
.btn--xl { padding: 15px 42px; font-size: 16px; }

/* SHIMMER SWEEP */
.btn--shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left .9s ease;
  pointer-events: none;
}
.btn--shimmer:hover::before { left: 130%; }

/* PULSE */
.btn--pulse {
  animation: btnPulse 2.6s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(255, 107, 53, 0.22); }
  50%      { box-shadow: 0 6px 24px rgba(255, 107, 53, 0.22), 0 0 0 14px rgba(255, 107, 53, 0); }
}


/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.4,0,.2,1);
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   PLACEHOLDERS (substituir por foto/vídeo real)
   ============================================================ */
.placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(45deg,
      var(--bg-elevated) 0,
      var(--bg-elevated) 12px,
      var(--bg-alt) 12px,
      var(--bg-alt) 24px);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--fg-subtle);
  overflow: hidden;
  padding: 24px;
  text-align: center;
}

.placeholder--video { aspect-ratio: 16 / 9; }
.placeholder--portrait { aspect-ratio: 4 / 5; max-width: 460px; }
.placeholder--bg { aspect-ratio: auto; position: absolute; inset: 0; border-radius: 0; }
.placeholder--gallery { aspect-ratio: 21 / 9; }
.placeholder--hero { aspect-ratio: 4 / 5; max-height: 640px; }

.placeholder__tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 100px;
}

.placeholder__desc {
  font-size: 13px;
  color: var(--fg-subtle);
  line-height: 1.5;
}


/* ============================================================
   IMAGENS REAIS (hero, retrato, vídeo-edu, galeria)
   ============================================================ */
.hero__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 640px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.sobre__img {
  display: block;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.video-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 35%;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.galeria img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.galeria img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
@media (max-width: 700px) {
  .galeria { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: all .3s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__icon { display: inline-flex; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.brand__sub {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
  font-weight: 600;
}

/* Logo real (lockup) — troca por tema */
.brand__logo { display: block; height: 38px; width: auto; }
.brand__logo--dark { display: none; }
.dark .brand__logo--light { display: none; }
.dark .brand__logo--dark { display: block; }
.footer__brand .brand__logo { height: 42px; }
@media (max-width: 520px) { .brand__logo { height: 32px; } }

.nav {
  display: flex;
  gap: 30px;
}
.nav a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color .2s ease;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after { width: 100%; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme toggle */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  transition: all .25s ease;
  position: relative;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
.theme-toggle__sun, .theme-toggle__moon { position: absolute; transition: opacity .3s ease, transform .3s ease; }
.theme-toggle__sun { opacity: 0; transform: rotate(-90deg); }
.theme-toggle__moon { opacity: 1; }
.dark .theme-toggle__sun  { opacity: 1; transform: rotate(0); }
.dark .theme-toggle__moon { opacity: 0; transform: rotate(90deg); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    box-shadow: var(--shadow-md);
  }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 520px) {
  .header__actions .btn { display: none; }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, var(--accent-soft) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 100%, rgba(255, 107, 53, 0.04) 0%, transparent 60%),
    var(--bg);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  padding-bottom: 80px;
}

.hero__copy { max-width: 600px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-card);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--accent-soft); }
  50%      { box-shadow: 0 0 0 6px transparent; }
}

.hero__title {
  font-size: clamp(36px, 4vw, 51px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin-bottom: 22px;
  font-weight: 800;
}

.hero__sub {
  font-size: var(--fs-body-lg);
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero__sub strong { color: var(--fg); font-weight: 600; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fg-muted);
}
.hero__trust li svg { color: var(--accent); flex-shrink: 0; }
.hero__trust strong { color: var(--fg); font-weight: 700; }


/* Hero visual / floating badge */
.hero__visual {
  position: relative;
}
.hero__floating-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 230px;
}
.hero__floating-badge-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__floating-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--fg);
  font-weight: 700;
  margin-bottom: 2px;
}
.hero__floating-badge span {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}


/* Hero authority strip */
.hero__authority {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 28px 0;
}
.hero__authority-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 40px;
}
.hero__authority-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  white-space: nowrap;
}
.hero__authority-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.hero__authority-list li {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.hero__authority-list small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11.5px;
  color: var(--fg-subtle);
  margin-top: 4px;
  letter-spacing: 0;
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; padding-bottom: 56px; }
  .hero__visual { order: 2; }
  .hero__copy { order: 1; max-width: 100%; }
  .hero__floating-badge { left: 16px; bottom: 16px; }
}
@media (max-width: 768px) {
  .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .cta-final__actions { width: 100%; align-items: stretch; }
}
@media (max-width: 600px) {
  .hero__authority-grid { flex-direction: column; align-items: flex-start; }
  .hero__floating-badge { max-width: calc(100% - 32px); }
}


/* ============================================================
   PROBLEMA
   ============================================================ */
.problema__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.problema-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  transition: all .3s ease;
}
.problema-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.problema-card__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 6px;
  margin-bottom: 20px;
}
.problema-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.25;
}
.problema-card p {
  font-size: 15.5px;
  line-height: 1.6;
}
.problema-card strong { color: var(--fg); font-weight: 600; }

.problema__closing {
  text-align: center;
  font-size: var(--fs-body-lg);
  color: var(--fg);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}
.problema__closing strong { font-weight: 600; }

@media (max-width: 900px) {
  .problema__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   DIFERENCIAL — Comparativo
   ============================================================ */
.diferencial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.comparativo {
  border-radius: var(--radius);
  padding: 36px 32px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  transition: all .3s ease;
}
.comparativo--no {
  border-style: dashed;
  border-color: var(--border);
  opacity: 0.92;
}
.comparativo--yes {
  border-color: var(--accent);
  background:
    linear-gradient(180deg, var(--accent-soft) 0%, transparent 30%),
    var(--bg-card);
  box-shadow: var(--shadow-md);
}

.comparativo__header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}
.comparativo__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comparativo--no .comparativo__icon {
  background: rgba(0,0,0,0.04);
  color: var(--fg-subtle);
}
.comparativo--yes .comparativo__icon {
  background: var(--accent);
  color: #fff;
}
.comparativo__header h3 {
  font-size: 22px;
  flex: 1;
  min-width: 180px;
}
.comparativo__tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
}
.comparativo--no .comparativo__tag {
  background: rgba(0,0,0,0.04);
  color: var(--fg-subtle);
}
.comparativo--yes .comparativo__tag {
  background: var(--accent);
  color: #fff;
}

.comparativo__list li {
  position: relative;
  padding: 12px 0 12px 30px;
  font-size: 15.5px;
  color: var(--fg);
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.5;
}
.comparativo__list li:last-child { border-bottom: 0; }
.comparativo__list li strong { color: var(--accent); font-weight: 700; }
.comparativo__list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 19px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.comparativo--no .comparativo__list li::before {
  background: rgba(0,0,0,0.06);
  border: 2px solid var(--fg-subtle);
  opacity: 0.5;
}
.comparativo--yes .comparativo__list li::before {
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.diferencial__science {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 30px;
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.diferencial__science svg { color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.diferencial__science p { color: var(--fg); line-height: 1.55; font-size: 15.5px; }
.diferencial__science strong { font-weight: 700; }
.diferencial__science small {
  display: block;
  margin-top: 10px;
  font-style: italic;
  color: var(--fg-subtle);
  font-size: 12.5px;
}

@media (max-width: 900px) {
  .diferencial__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.beneficio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .3s ease;
}
.beneficio-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.beneficio-card__icon {
  display: inline-flex;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.beneficio-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.beneficio-card p {
  font-size: 14.5px;
  line-height: 1.55;
}
.beneficio-card--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.beneficio-card--accent h3,
.beneficio-card--accent p { color: #fff; }
.beneficio-card--accent .beneficio-card__icon {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

@media (max-width: 1080px) {
  .beneficios__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .beneficios__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   SOBRE
   ============================================================ */
.sobre__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
  align-items: center;
}
.sobre__visual { position: relative; }
.sobre__credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.sobre__credentials > div {
  text-align: center;
  border-right: 1px solid var(--border-soft);
  padding: 8px 4px;
}
.sobre__credentials > div:last-child { border-right: 0; }
.sobre__credentials strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.sobre__credentials span {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.3;
}

.sobre__title {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 28px;
  line-height: 1.15;
}
.sobre__text p { margin-bottom: 18px; line-height: 1.65; }
.sobre__text strong { color: var(--fg); font-weight: 600; }

.sobre__bullets {
  margin: 28px 0 32px;
}
.sobre__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--fg);
}
.sobre__bullets li svg { color: var(--accent); }

@media (max-width: 960px) {
  .sobre__grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre__visual { max-width: 460px; margin: 0 auto; }
}


/* ============================================================
   VÍDEO EDUCATIVO
   ============================================================ */
.video-wrapper {
  max-width: 920px;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-edu__entities {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.video-edu__entities p {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.video-edu__entities ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-edu__entities li {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.video-edu__entities strong { color: var(--fg); font-weight: 700; }


/* ============================================================
   MÉTODO / TIMELINE
   ============================================================ */
.metodo__timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto 48px;
  padding-left: 32px;
}
.metodo__timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-soft) 100%);
}

.metodo-step {
  position: relative;
  padding: 28px 0 28px 56px;
  border-bottom: 1px solid var(--border-soft);
}
.metodo-step:last-of-type { border-bottom: 0; }

.metodo-step__num {
  position: absolute;
  left: -32px;
  top: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  z-index: 1;
}
.metodo-step--highlight .metodo-step__num {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.metodo-step__body h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.metodo-step__body p {
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.metodo-step__body strong { color: var(--fg); font-weight: 600; }

.metodo-step__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 12px;
  background: var(--accent-soft);
  border-radius: 6px;
}

.metodo__closing {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
}
.metodo__closing svg { color: var(--accent); flex-shrink: 0; }
.metodo__closing p { color: var(--fg); font-size: 16px; line-height: 1.55; }
.metodo__closing strong { font-weight: 700; display: block; margin-bottom: 4px; }

@media (max-width: 600px) {
  .metodo__timeline { padding-left: 24px; }
  .metodo__timeline::before { left: 18px; }
  .metodo-step { padding-left: 32px; }
  .metodo-step__num { width: 48px; height: 48px; left: -26px; font-size: 14px; }
}


/* ============================================================
   CTA BANNER MID
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.cta-banner__inner {
  position: relative;
  padding: 80px 24px;
  border-radius: var(--radius-lg);
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 0;
}
.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg,
      rgba(20, 17, 13, 0.78) 0%,
      rgba(20, 17, 13, 0.92) 50%,
      rgba(255, 107, 53, 0.45) 100%);
  border-radius: inherit;
}
.cta-banner__copy {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: #fff;
}
.cta-banner__copy .section-label {
  color: var(--accent);
  background: rgba(255, 107, 53, 0.18);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.cta-banner__copy .section-label::before { background: var(--accent); }
.cta-banner__copy h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-banner__copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--fs-body-lg);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .cta-banner__inner { padding: 60px 20px; border-radius: var(--radius); }
}


/* ============================================================
   PROGRAMA / OFERTA
   ============================================================ */
.programa__card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.programa__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent) 0%, #FFA15A 100%);
}

.programa__head {
  padding: 44px 48px 28px;
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}
.programa__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px;
  background: var(--accent-soft);
  border-radius: 100px;
  margin-bottom: 18px;
}
.programa__head h3 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 12px;
}
.programa__head p {
  font-size: 16px;
  color: var(--fg-muted);
}

.programa__features {
  padding: 36px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.programa__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  line-height: 1.45;
}
.programa__features li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.programa__features li strong { color: var(--accent); font-weight: 700; }

.programa__footer {
  padding: 32px 48px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.programa__price-label {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 6px;
}
.programa__price strong {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.015em;
  display: block;
}
.programa__price small {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
}

.programa__limit {
  text-align: center;
  padding: 18px 48px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--fg-muted);
}
.programa__limit svg { color: var(--accent); }

@media (max-width: 760px) {
  .programa__head { padding: 36px 28px 24px; }
  .programa__features { padding: 28px; grid-template-columns: 1fr; }
  .programa__footer { padding: 24px 28px; flex-direction: column; align-items: stretch; text-align: center; }
  .programa__limit { padding: 16px 28px 28px; }
}


/* ============================================================
   LEAD MAGNET
   ============================================================ */
.lead-magnet__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.lead-magnet__bullets {
  margin-top: 28px;
}
.lead-magnet__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15.5px;
  color: var(--fg);
  line-height: 1.5;
}
.lead-magnet__bullets li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.lead-magnet__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-magnet__form-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border-soft);
}
.lead-magnet__form-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lead-magnet__form-header strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--fg);
  font-weight: 700;
  margin-bottom: 2px;
}
.lead-magnet__form-header small {
  font-size: 12.5px;
  color: var(--fg-muted);
}

.lead-magnet__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}
.lead-magnet__form input,
.lead-magnet__form select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--fg);
  transition: all .2s ease;
}
.lead-magnet__form input::placeholder { color: var(--fg-subtle); }
.lead-magnet__form input:focus,
.lead-magnet__form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.lead-magnet__form button { margin-top: 8px; }
.lead-magnet__form-note {
  font-size: 12.5px;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
}
.lead-magnet__form-note strong { color: var(--fg); font-weight: 600; }

@media (max-width: 900px) {
  .lead-magnet__grid { grid-template-columns: 1fr; gap: 40px; }
}


/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.depoimento {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all .3s ease;
}
.depoimento:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.depoimento__stars {
  font-size: 16px;
  letter-spacing: 0.15em;
  color: #FFB800;
  margin-bottom: 16px;
}

.depoimento blockquote {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--fg);
  margin-bottom: 24px;
  font-style: normal;
}
.depoimento blockquote::before {
  content: '"';
  font-family: var(--font-heading);
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 8px;
}
.depoimento blockquote strong { color: var(--accent); font-weight: 700; }

.depoimento__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.depoimento__avatar {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.depoimento__author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--fg);
  font-weight: 700;
}
.depoimento__author small {
  font-size: 12.5px;
  color: var(--fg-muted);
}

.depoimento--featured {
  background:
    linear-gradient(180deg, var(--accent-soft) 0%, transparent 40%),
    var(--bg-card);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}
.depoimento__featured-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
}

.depoimentos__media {
  margin-top: 16px;
}

@media (max-width: 960px) {
  .depoimentos__grid { grid-template-columns: 1fr; gap: 32px; }
  .depoimento--featured { transform: none; }
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-inner { max-width: 880px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: all .25s ease;
}
.faq-item:hover { border-color: var(--accent); }
.faq-item.open { border-color: var(--accent); box-shadow: var(--shadow-sm); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.4;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--accent); }
.faq-q span { flex: 1; }

.faq-chevron {
  color: var(--accent);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 480px; }
.faq-a p {
  padding: 0 26px 24px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--fg-muted);
}
.faq-a p strong { color: var(--fg); font-weight: 600; }


/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: 120px 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.10) 0%, transparent 50%),
    var(--bg-dark);
  color: #F5EFE3;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}
.cta-final__inner .section-label {
  color: var(--accent);
  background: rgba(255, 107, 53, 0.16);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.cta-final__inner .section-label::before { background: var(--accent); }
.cta-final__inner h2 {
  color: #fff;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.022em;
}
.cta-final__inner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-body-lg);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.cta-final__actions {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.cta-final__note {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .cta-final { padding: 80px 0; }
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-alt);
  padding: 72px 0 28px;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 380px;
}
.footer__url {
  margin-top: 14px !important;
  font-family: var(--font-heading);
  font-size: 14px !important;
}
.footer__url a {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.footer__url a:hover { text-decoration: underline; }

.footer h4 {
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--fg);
}
.footer ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}
.footer ul li a {
  color: var(--fg-muted);
  transition: color .2s ease;
}
.footer ul li a:hover { color: var(--accent); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--fg-subtle);
}
.footer__bottom a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}


/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wpp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  background: var(--cta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform .25s ease;
}
.wpp-float:hover { transform: scale(1.08); }

.wpp-float__pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--cta);
  opacity: 0.5;
  animation: wppPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes wppPulse {
  0%   { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 520px) {
  .wpp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}


/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--fg-subtle); }


/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
