/* ============================================
   Landing Page — Ankigen4U
   Prefixo: .lp-
   Arquivo: app/static/css/landing.css
   Usa variáveis do app.css (não duplicar)
   Revisado com: Vercel Web Interface Guidelines
   ============================================ */

/* --- VARIÁVEIS --- */
:root {
  --lp-section-py: 52px;
  --lp-section-py-sm: 32px;
  --lp-card-radius: 16px;
  --lp-card-shadow: 0 4px 24px rgba(60, 64, 67, 0.10);
  --lp-card-shadow-hover: 0 12px 40px rgba(60, 64, 67, 0.18);
  --lp-max-width: 1100px;
  --lp-hero-gradient: linear-gradient(150deg, #f0f4ff 0%, #e8f0fe 50%, #f8f9fa 100%);
  --lp-orb-color: rgba(26, 115, 232, 0.07);
}

/* --- UTILITÁRIOS --- */
.lp-container {
  max-width: var(--lp-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.lp-section-title {
  font-family: 'Google Sans', Roboto, sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 14px;
  line-height: 1.2;
  text-wrap: balance;
}

.lp-section-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--color-text-secondary);
  margin: 0 0 48px;
  line-height: 1.65;
  text-wrap: balance;
}

.lp-section-sub--flush {
  margin-bottom: 0;
}

/* --- BOTÕES --- */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--color-primary);
  color: var(--color-primary-text);
  border: none;
  border-radius: 10px;
  font-family: 'Google Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}

.lp-btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.35);
  color: var(--color-primary-text);
  text-decoration: none;
  transform: translateY(-1px);
}

.lp-btn-primary:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  background-color: rgba(26, 115, 232, 0.06);
  color: var(--color-primary);
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: 'Google Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.lp-btn-secondary:hover {
  background-color: rgba(26, 115, 232, 0.12);
  color: var(--color-primary);
  text-decoration: none;
  transform: translateY(-1px);
}

.lp-btn-secondary:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

/* --- HERO --- */
.lp-hero {
  background: var(--lp-hero-gradient);
  padding: var(--lp-section-py-sm) 0 var(--lp-section-py);
  position: relative;
  overflow: hidden;
}

/* Orbes decorativos */
.lp-hero::before,
.lp-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--lp-orb-color);
  pointer-events: none;
}

.lp-hero::before {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -100px;
}

.lp-hero::after {
  width: 320px;
  height: 320px;
  bottom: -80px;
  left: -60px;
  background: rgba(26, 115, 232, 0.05);
}

.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 960px) {
  .lp-hero__inner {
    grid-template-columns: 1fr 420px;
    gap: 64px;
  }
}

.lp-hero__text {
  text-align: center;
}

@media (min-width: 960px) {
  .lp-hero__text {
    text-align: left;
  }
}

.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background-color: rgba(26, 115, 232, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(26, 115, 232, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 24px;
  font-family: 'Google Sans', sans-serif;
}

.lp-hero__headline {
  font-family: 'Google Sans', Roboto, sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.12;
  margin: 0 auto 20px;
  max-width: 620px;
  text-wrap: balance;
  letter-spacing: -0.5px;
}

@media (min-width: 960px) {
  .lp-hero__headline {
    margin: 0 0 20px;
  }
}

.lp-hero__headline em {
  font-style: normal;
  color: var(--color-primary);
}

.lp-hero__formats {
  margin: 20px 0 4px;
  display: flex;
  justify-content: center;
}

@media (min-width: 960px) {
  .lp-hero__formats {
    justify-content: flex-start;
    margin: 20px 0 8px;
  }
}

.lp-formats-img {
  height: 40px;
  width: auto;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}

body[data-theme="dark"] .lp-formats-img {
  filter: brightness(0.9) drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

.lp-hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0 auto 36px;
  max-width: 560px;
  text-wrap: balance;
}

@media (min-width: 960px) {
  .lp-hero__sub {
    margin: 0 0 36px;
  }
}

.lp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

@media (min-width: 960px) {
  .lp-hero__ctas {
    justify-content: flex-start;
  }
}

.lp-hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 960px) {
  .lp-hero__trust {
    justify-content: flex-start;
  }
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.lp-trust-item svg {
  color: var(--color-success);
  flex-shrink: 0;
}

/* --- MOCKUP FLASHCARD (HERO VISUAL) --- */
.lp-hero__visual {
  display: none;
  position: relative;
}

@media (min-width: 960px) {
  .lp-hero__visual {
    display: block;
  }
}

.lp-fc-mockup {
  background: var(--color-surface);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 64px rgba(60, 64, 67, 0.18), 0 4px 16px rgba(60, 64, 67, 0.1);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(26, 115, 232, 0.1);
}

.lp-fc-mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.lp-fc-mockup__type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(26, 115, 232, 0.1);
  color: var(--color-primary);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Google Sans', sans-serif;
}

.lp-fc-mockup__source {
  font-size: 11px;
  color: var(--color-text-tertiary);
  font-weight: 500;
}

.lp-fc-mockup__question {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 68px;
}

.lp-fc-mockup__divider {
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
  margin-bottom: 16px;
  opacity: 0.3;
}

.lp-fc-mockup__answer {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.lp-fc-mockup__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lp-fc-mockup__ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--color-success);
  font-weight: 600;
}

.lp-fc-mockup__actions {
  display: flex;
  gap: 8px;
}

.lp-fc-action {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: default;
}

.lp-fc-action--apkg {
  background: rgba(30, 142, 62, 0.1);
}

.lp-fc-action--html {
  background: rgba(26, 115, 232, 0.1);
}

/* Card decorativo flutuante (segundo card) */
.lp-fc-mockup-secondary {
  background: var(--color-surface);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 32px rgba(60, 64, 67, 0.12);
  position: absolute;
  bottom: -24px;
  left: -36px;
  width: 200px;
  z-index: 3;
  border: 1px solid var(--color-border);
}

.lp-fc-secondary__label {
  font-size: 11px;
  color: var(--color-text-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.lp-fc-secondary__stat {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Google Sans', sans-serif;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 2px;
}

.lp-fc-secondary__sub {
  font-size: 12px;
  color: var(--color-text-secondary);
}

/* --- STATS (HERO) --- */
.lp-hero__stats {
  margin-top: 16px;
}

/* --- COMO FUNCIONA (Guia Rápido) --- */
.lp-how {
  background-color: var(--color-surface);
  padding: var(--lp-section-py) 0;
}

.lp-how__header {
  text-align: center;
  margin-bottom: 40px;
}

.lp-how__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .lp-how__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.lp-how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  z-index: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
  will-change: transform;
}

.lp-how__step:hover {
  transform: scale(1.23) translateY(-21px);
  z-index: 2;
}

/* Header: badge + label na mesma linha */
.lp-how__step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.lp-how__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #4a90e2 100%);
  color: #ffffff;
  border-radius: 50%;
  font-family: 'Google Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
  flex-shrink: 0;
}

.lp-how__step-label {
  font-family: 'Google Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
  text-align: left;
}

/* GIF wrapper — escala interna quando o step pai é hovereado (efeito duplo) */
.lp-how__gif-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(60, 64, 67, 0.12);
  border: 1px solid var(--color-border);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease;
}

.lp-how__step:hover .lp-how__gif-wrap {
  transform: scale(1.04);
  box-shadow: 0 24px 64px rgba(60, 64, 67, 0.28);
}

/* Desktop: irmãos recuam fortemente quando um step está em hover */
@media (min-width: 768px) {
  .lp-how__steps:has(.lp-how__step:hover) .lp-how__step {
    transform: scale(0.77);
    opacity: 0.35;
  }

  .lp-how__steps:has(.lp-how__step:hover) .lp-how__step:hover {
    transform: scale(1.23) translateY(-21px);
    opacity: 1;
    z-index: 2;
  }
}

.lp-how__gif {
  display: block;
  width: 100%;
  height: auto;
}

.lp-how__step-body {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
  text-align: left;
}

.lp-how__cta {
  text-align: center;
  margin-top: 40px;
}

/* --- FEATURES --- */
.lp-features {
  background-color: var(--color-bg);
  padding: var(--lp-section-py) 0;
}

.lp-features__header {
  text-align: center;
  margin-bottom: 40px;
}

.lp-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .lp-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .lp-features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--lp-card-radius);
  padding: 28px 24px;
  box-shadow: var(--lp-card-shadow);
  transition: transform 0.2s;
}

.lp-feature-card:hover {
  box-shadow: var(--lp-card-shadow-hover);
  transform: translateY(-3px);
}

.lp-feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.lp-feature-icon-wrap--blue   { background: rgba(26, 115, 232, 0.1); }
.lp-feature-icon-wrap--green  { background: rgba(30, 142, 62, 0.1); }
.lp-feature-icon-wrap--purple { background: rgba(103, 58, 183, 0.1); }
.lp-feature-icon-wrap--orange { background: rgba(245, 124, 0, 0.1); }

.lp-feature-title {
  font-family: 'Google Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 8px;
  text-wrap: balance;
}

.lp-feature-body {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* --- PROVA SOCIAL --- */
.lp-social-proof {
  background-color: var(--color-surface);
  padding: var(--lp-section-py) 0;
  text-align: center;
}

.lp-social-proof__header {
  margin-bottom: 36px;
}

.lp-realtime-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--color-text-secondary);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.lp-realtime-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: lp-pulse 2s ease-in-out infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.lp-social-proof__counters {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
}

.lp-social-proof__counters .stat-card {
  flex: 1 1 280px;
  max-width: 420px;
}

/* --- PLANOS TEASER --- */
.lp-plans {
  background-color: var(--color-bg);
  padding: var(--lp-section-py) 0;
}

.lp-plans__header {
  text-align: center;
  margin-bottom: 36px;
}

.lp-plans__grid {
  max-width: 740px;
  margin: 0 auto;
}

.lp-plans__footer {
  text-align: center;
  margin-top: 32px;
}

.lp-plans__footer a {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
}

.lp-plans__footer a:hover {
  text-decoration: underline;
}

/* --- FAQ --- */
.lp-faq {
  background-color: var(--color-surface);
  padding: var(--lp-section-py) 0;
}

.lp-faq__header {
  text-align: center;
  margin-bottom: 36px;
}

.lp-faq__container {
  max-width: 740px;
}

.lp-faq .accordion-button {
  font-family: 'Google Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text-primary);
  background-color: var(--color-surface);
  border-radius: var(--lp-card-radius);
}

.lp-faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background-color: var(--color-card-bg);
  box-shadow: none;
}

.lp-faq .accordion-button:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

.lp-faq .accordion-body {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  background-color: var(--color-surface);
}

.lp-faq .accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--lp-card-radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.lp-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
  box-shadow: 0 2px 16px rgba(26, 115, 232, 0.1);
}

/* --- WAVE SEPARATOR --- */
.lp-wave {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}

.lp-wave svg {
  display: block;
  width: 100%;
}

/* --- CTA FINAL --- */
.lp-cta-final {
  background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
  padding: var(--lp-section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-cta-final::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -100px;
  right: -80px;
  pointer-events: none;
}

.lp-cta-final::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -60px;
  left: -40px;
  pointer-events: none;
}

.lp-cta-final__inner {
  position: relative;
  z-index: 1;
}

.lp-cta-final__headline {
  font-family: 'Google Sans', Roboto, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 auto 18px;
  max-width: 620px;
  line-height: 1.15;
  text-wrap: balance;
  letter-spacing: -0.3px;
}

.lp-cta-final__body {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin: 0 auto 36px;
  max-width: 500px;
  text-wrap: balance;
}

.lp-cta-final .lp-btn-primary {
  background-color: #ffffff;
  color: var(--color-primary);
  font-size: 17px;
  padding: 16px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.lp-cta-final .lp-btn-primary:hover {
  background-color: #f0f4ff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.lp-cta-final__micro {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 20px;
  margin-bottom: 0;
}

.lp-cta-final__secondary-link {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-decoration: none;
}

.lp-cta-final__secondary-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.lp-cta-final__secondary-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- ENTRADA ANIMADA --- */
@media (prefers-reduced-motion: no-preference) {
  .lp-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .lp-anim.is-visible {
    opacity: 1;
    transform: none;
  }

  .lp-anim-delay-1 { transition-delay: 0.1s; }
  .lp-anim-delay-2 { transition-delay: 0.2s; }
  .lp-anim-delay-3 { transition-delay: 0.3s; }

  .lp-fc-mockup {
    animation: lp-float 4s ease-in-out infinite;
  }

  @keyframes lp-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
  }
}

/* --- RESPONSIVIDADE MOBILE --- */
@media (max-width: 767px) {
  .lp-hero,
  .lp-how,
  .lp-features,
  .lp-social-proof,
  .lp-plans,
  .lp-faq,
  .lp-cta-final {
    padding: var(--lp-section-py-sm) 0;
  }

  .lp-hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .lp-btn-primary,
  .lp-btn-secondary {
    width: 100%;
    max-width: 340px;
  }
}

/* --- DARK MODE --- */
body[data-theme="dark"] {
  --lp-hero-gradient: linear-gradient(150deg, #202124 0%, #23283a 50%, #202124 100%);
  --lp-orb-color: rgba(138, 180, 248, 0.06);
}

body[data-theme="dark"] .lp-feature-card {
  background: var(--color-surface);
  border-color: var(--color-border);
}

/* Botões: corrige sobrescrita de body[data-theme="dark"] a { color } */
body[data-theme="dark"] .lp-btn-primary {
  color: #202124;
}

body[data-theme="dark"] .lp-btn-primary:hover {
  color: #202124;
}

body[data-theme="dark"] .lp-btn-secondary {
  color: var(--color-primary);
}

body[data-theme="dark"] .lp-btn-secondary:hover {
  color: var(--color-primary);
}

body[data-theme="dark"] .lp-how__gif-wrap {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-color: var(--color-border);
}

body[data-theme="dark"] .lp-how__step:hover .lp-how__gif-wrap {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

body[data-theme="dark"] .lp-fc-mockup {
  background: var(--color-surface);
  border-color: var(--color-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .lp-fc-mockup-secondary {
  background: var(--color-surface);
  border-color: var(--color-border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] .lp-feature-icon-wrap--blue   { background: rgba(138, 180, 248, 0.12); }
body[data-theme="dark"] .lp-feature-icon-wrap--green  { background: rgba(129, 201, 149, 0.12); }
body[data-theme="dark"] .lp-feature-icon-wrap--purple { background: rgba(187, 134, 252, 0.12); }
body[data-theme="dark"] .lp-feature-icon-wrap--orange { background: rgba(255, 183, 77, 0.12); }

body[data-theme="dark"] .lp-faq .accordion-button {
  background-color: var(--color-surface);
  color: var(--color-text-primary);
}

body[data-theme="dark"] .lp-faq .accordion-body {
  background-color: var(--color-surface);
}

body[data-theme="dark"] .lp-cta-final {
  background: linear-gradient(135deg, #1a3a6e 0%, #1e2a4a 100%);
}

/* --- Sobre (conteúdo gerenciado pelo admin) --- */
.lp-sobre__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

.lp-sobre__body h2:not(.accordion-header),
.lp-sobre__body h3:not(.accordion-header),
.lp-sobre__body h4:not(.accordion-header) {
  color: var(--color-text-primary);
  font-family: 'Google Sans', sans-serif;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

/* Garante que o accordion-header dentro do corpo não ganhe margens extras */
.lp-sobre__body .accordion-header {
  margin: 0;
}

.lp-sobre__body .accordion-body p:last-child {
  margin-bottom: 0;
}

.lp-sobre__body ul,
.lp-sobre__body ol {
  padding-left: 1.4em;
  margin-bottom: 1em;
}

.lp-sobre__body li {
  margin-bottom: 0.4em;
}

.lp-sobre__body p {
  margin-bottom: 1em;
}

.lp-sobre__body a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Smooth scroll for hash navigation */
html {
  scroll-behavior: smooth;
}
