/* ==========================================================================
   LANDING.CSS — Zutra Landing Page
   Depende de: ../design-system-zutra/css/tokens.css e base.css
   Não incluir showcase/* nem layout.css do DS (são viewer-only)
   ========================================================================== */

/* ── TOKEN OVERRIDE ────────────────────────────────────────────────────────── */
body { --border: var(--n-700); }

/* ── RESPONSIVE SAFETY NET ─────────────────────────────────────────────────── */
html { -webkit-tap-highlight-color: transparent; }
img, svg, video { max-width: 100%; }

/* ── PAGE WRAPPER (padrão ds-wrap) ─────────────────────────────────────────── */
.lp-wrap {
  max-width: 1440px;
  margin: 32px auto;
  border: 1px solid var(--n-700);
  border-radius: var(--r-2xl);
  overflow: clip;
}

/* ── CONTAINER ─────────────────────────────────────────────────────────────── */
.lp-container        { padding: 0 48px; }
.lp-container--narrow { max-width: 800px; padding: 0 48px; }

/* ── IMAGE PLACEHOLDER ─────────────────────────────────────────────────────── */
.img-ph {
  width: 100%;
  background: var(--bg-elevated);
  border: 1.5px dashed var(--n-500);
  border-radius: var(--r-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-3);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .06em;
  text-align: center;
  padding: 40px 24px;
  min-height: 320px;
}
.img-ph svg { width: 28px; height: 28px; opacity: 0.35; }
.img-ph--short  { min-height: 180px; }
.img-ph--tall   { min-height: 440px; }
.img-ph--fill   { height: 100%; min-height: 300px; }
.img-ph--video  { min-height: 420px; border-color: var(--n-600); }

/* ── NAV ───────────────────────────────────────────────────────────────────── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.92);
  border-bottom: 1px solid var(--border);
  height: 64px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lp-nav-inner {
  padding: 0 28px 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-nav-logo { display: flex; align-items: center; }
.lp-nav-actions { display: flex; align-items: center; gap: 10px; }
.logo-svg--lp-nav  { height: 26px; width: auto; display: block; overflow: visible; }
.logo-svg--lp-footer { height: 28px; width: auto; display: block; overflow: visible; }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.lp-hero {
  background-color: var(--bg-base);
  background-image:
    linear-gradient(rgba(10,10,10,0.30), rgba(10,10,10,0.30)),
    url('../assets/tareq-ajalyakin-Ig1YHgmJrnQ-unsplash (1).jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--n-700);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: clip;
}
.lp-hero-text {
  max-width: 860px;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lp-hero-img {
  width: calc(100% - 96px);
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
.lp-hero-img .img-ph {
  height: 460px;
  min-height: unset;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  border-bottom: none;
}
.lp-hero-overline {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime-500);
  margin-bottom: 24px;
}
.lp-hero-title {
  font-family: var(--font-body);
  font-size: clamp(32px, 4.5vw, 60px); /* DS D2 · Display — 60px topo */
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--text-1);
  max-width: 800px;
  margin: 0 0 28px;
}
.lp-hero-lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 0 36px;
}
.lp-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-hero-note {
  font-size: 13px;
  color: var(--text-3);
  display: block;
  margin-top: 16px;
}
.lp-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  padding: 32px 48px;
  margin-top: 64px;
  border-top: 1px solid var(--n-700);
  border-bottom: 1px solid var(--n-700);
  position: relative;
  z-index: 1;
}
.lp-hero-proof-card {
  background: var(--bg-elevated);
  border: 1px solid var(--n-700);
  border-radius: var(--r-2xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  transition: border-color var(--t-base) var(--ease),
              transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
  cursor: default;
}
.lp-hero-proof-card:hover {
  border-color: var(--orange-500);
  transform: translateX(4px) translateY(-4px);
  box-shadow: -5px 6px 0 var(--orange-500);
}
.lp-hero-proof-icon { width: 22px; height: 22px; color: var(--orange-500); stroke-width: 1.5; }
.lp-hero-proof-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.2;
  letter-spacing: -.01em;
}
.lp-hero-proof-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ── SECTIONS ──────────────────────────────────────────────────────────────── */
.lp-section          { padding: 96px 0; background: var(--bg-base);     border-bottom: 1px solid var(--n-700); }
.lp-section--surface  { padding: 96px 0; background: var(--bg-surface);  border-bottom: 1px solid var(--n-700); }
.lp-section--elevated { padding: 96px 0; background: var(--bg-elevated); border-bottom: 1px solid var(--n-700); }

/* ── SECTION BAR (padrão sec-header do DS) ──────────────────────────────────── */
.lp-sec-bar {
  margin: 0 0 48px;
  padding: 24px clamp(20px, 4vw, 40px);
  background: var(--bg-elevated);
  border: 1px solid var(--n-700);
  border-radius: var(--r-2xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.lp-sec-bar-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime-500);
  line-height: 1;
}
.lp-sec-bar-label--orange { color: var(--orange-500); }
.lp-sec-bar-label--teal   { color: var(--teal-500); }
.lp-sec-bar-title {
  font-family: var(--font-body);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.25;
  color: var(--text-1);
  margin: 0;
}

.lp-sec-header        { text-align: center; margin-bottom: 56px; }
.lp-sec-header--left  { text-align: left;   margin-bottom: 40px; }

/* ── TYPOGRAPHY HELPERS ────────────────────────────────────────────────────── */
.lp-overline {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime-500);
  margin-bottom: 16px;
}
.lp-overline--muted { color: var(--text-3); }
.lp-overline--teal  { color: var(--teal-500); }

.lp-h2 {
  font-family: var(--font-body);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.15;
  color: var(--text-1);
  margin-bottom: 20px;
  max-width: 640px;
}
.lp-h2--center { text-align: center; margin-left: auto; margin-right: auto; }
.lp-h2--wide   { max-width: 800px; }

.lp-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 600px;
  margin-bottom: 16px;
}
.lp-lead--center { text-align: center; margin-left: auto; margin-right: auto; }
.lp-lead--bold   { font-weight: 700; color: var(--text-1); }
.lp-lead:last-child { margin-bottom: 0; }

/* ── FEATURE CARDS (2-up — seção "Como funciona") ──────────────────────────── */
.lp-feature-cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

/* ── 2-COLUMN GRID ─────────────────────────────────────────────────────────── */
.lp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-grid-2--stretch { align-items: stretch; }
.lp-grid-2--top     { align-items: start; }
.lp-grid-2--reverse { direction: rtl; }
.lp-grid-2--reverse > * { direction: ltr; }

/* ── 3-COLUMN GRID ─────────────────────────────────────────────────────────── */
.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── STATS ─────────────────────────────────────────────────────────────────── */
.lp-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
}
.lp-stat-item {
  background: var(--bg-elevated);
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--border);
}
.lp-stat-item:last-child { border-right: none; }
.lp-stat-num {
  font-family: var(--font-brand);
  font-size: clamp(44px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--lime-500);
}
.lp-stat-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 200px;
}

/* ── HIGHLIGHT BOX ─────────────────────────────────────────────────────────── */
.lp-highlight {
  background: var(--bg-elevated);
  border: 1.5px solid var(--orange-500);
  border-radius: var(--r-2xl);
  padding: 28px 32px;
  margin-top: 8px;
  box-shadow: 0 0 32px rgba(255,107,43,.10), inset 0 1px 0 rgba(255,107,43,.08);
}
.lp-highlight p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-1);
  margin: 0;
}
.lp-highlight--border {
  background: transparent;
  border-color: var(--n-300);
}
.lp-highlight--border p {
  font-weight: 400;
}

/* ── STEPS ─────────────────────────────────────────────────────────────────── */
.lp-steps { display: flex; flex-direction: column; }
.lp-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.lp-step:last-child { border-bottom: none; }
.lp-step-num {
  font-family: var(--font-brand);
  font-size: 32px;
  font-weight: 700;
  color: var(--n-600);
  line-height: 1.3;
  transition: color var(--t-base) var(--ease);
}
.lp-step:hover .lp-step-num { color: var(--lime-500); }
.lp-step-h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
  line-height: 1.3;
}
.lp-step-p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

/* ── TESTIMONIALS ──────────────────────────────────────────────────────────── */
.lp-testimonial {
  background: var(--bg-elevated);
  border: 2px solid transparent;
  border-radius: var(--r-2xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--t-base) var(--ease),
              transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
  cursor: default;
}
.lp-testimonial:hover {
  border-color: var(--teal-500);
  transform: translateX(4px) translateY(-4px);
  box-shadow: -5px 6px 0 var(--teal-900);
}
.lp-testimonial-mark {
  font-family: var(--font-brand);
  font-size: 48px;
  font-weight: 700;
  color: var(--lime-500);
  line-height: 1;
  display: block;
}
.lp-testimonial-quote {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-2);
  font-style: italic;
  flex: 1;
}

/* ── CHECK / CROSS LISTS ───────────────────────────────────────────────────── */
.lp-list-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 16px;
  display: block;
}
.lp-check-list,
.lp-cross-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.lp-check-list li,
.lp-cross-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.5;
}
.lp-check-list li:last-child,
.lp-cross-list li:last-child { border-bottom: none; }
.lp-check-list li::before {
  content: '✓';
  font-size: 14px;
  font-weight: 700;
  color: var(--lime-500);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  margin-top: 1px;
}
.lp-cross-list li::before {
  content: '✕';
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-500);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  margin-top: 1px;
}

/* ── PRICE BOX ─────────────────────────────────────────────────────────────── */
.lp-price-box {
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base) var(--ease),
              transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}
.lp-price-box:hover {
  border-color: var(--lime-500);
  transform: translateX(4px) translateY(-4px);
  box-shadow: -5px 6px 0 var(--lime-500);
}
.lp-price-tag {
  font-family: var(--font-brand);
  font-size: 56px;
  font-weight: 700;
  color: var(--lime-500);
  letter-spacing: -.03em;
  line-height: 1;
}
.lp-price-period {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 6px;
  margin-bottom: 28px;
}
.lp-price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lp-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
.lp-price-features li:last-child { border-bottom: none; }
.lp-price-features li::before {
  content: '—';
  color: var(--lime-500);
  font-weight: 700;
  flex-shrink: 0;
}
.lp-price-note {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65;
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 24px;
}

/* ── FORM CARD ─────────────────────────────────────────────────────────────── */
.lp-form-card {
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-form-card-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.lp-form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── PERSONA MINI-GRID (card "Como funciona") ──────────────────────────────── */
.lp-persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ── GUARANTEE BOX ─────────────────────────────────────────────────────────── */
.lp-guarantee-box {
  max-width: 560px;
  margin: 32px auto;
  background: var(--bg-elevated);
  border: 1.5px dashed var(--n-500);
  border-radius: var(--r-2xl);
  padding: 28px 32px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  text-align: left;
}

/* ── FAQ ACCORDION ─────────────────────────────────────────────────────────── */
.lp-faq-item {
  border-bottom: 1px solid var(--border);
}
.lp-faq-item:first-child { border-top: 1px solid var(--border); }
.lp-faq-toggle {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  color: var(--text-1);
}
.lp-faq-q {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-1);
  flex: 1;
  transition: color var(--t-fast) var(--ease);
}
.lp-faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform var(--t-base) var(--ease), color var(--t-base) var(--ease);
  margin-top: 2px;
  display: block;
}
.lp-faq-item.is-open .lp-faq-chevron {
  transform: rotate(180deg);
  color: var(--lime-500);
}
.lp-faq-item.is-open .lp-faq-q { color: var(--lime-500); }
.lp-faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-slow) var(--ease);
}
.lp-faq-item.is-open .lp-faq-body { grid-template-rows: 1fr; }
.lp-faq-inner { overflow: hidden; }
.lp-faq-a {
  padding-bottom: 24px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 640px;
}

/* ── CTA BANNER ────────────────────────────────────────────────────────────── */
.lp-cta-banner {
  background: var(--bg-elevated);
  padding: 104px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--n-700);
}
.lp-cta-banner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,217,232,.07) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.lp-cta-overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-500);
  display: block;
  margin-bottom: 16px;
}
.lp-cta-title {
  font-family: var(--font-body);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
  color: var(--text-1);
  max-width: 640px;
  margin: 0 auto 20px;
}
.lp-cta-lead {
  font-size: 15px;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.lp-cta-note {
  font-size: 13px;
  color: var(--text-3);
  display: block;
  margin-top: 16px;
}

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
.lp-footer {
  background: var(--bg-base);
  padding: 64px 0 40px;
}
.lp-footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.lp-footer-brand-logo { display: flex; align-items: center; margin-bottom: 12px; }
.lp-footer-tagline {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 8px;
}
.lp-footer-url { font-size: 13px; color: var(--text-3); }
.lp-footer-nav { display: flex; gap: 56px; flex-wrap: wrap; }
.lp-footer-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 14px;
}
.lp-footer-links { display: flex; flex-direction: column; gap: 10px; }
.lp-footer-link {
  font-size: 13px;
  color: var(--text-3);
  transition: color var(--t-fast) var(--ease);
}
.lp-footer-link:hover { color: var(--lime-500); }
.lp-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-footer-copy { font-size: 12px; color: var(--text-3); }
.lp-footer-legal { display: flex; gap: 24px; }
.lp-footer-legal a {
  font-size: 12px;
  color: var(--text-3);
  transition: color var(--t-fast) var(--ease);
}
.lp-footer-legal a:hover { color: var(--lime-500); }

/* ── DIVIDER + MISC ────────────────────────────────────────────────────────── */
.lp-divider { height: 1px; background: var(--border); margin: 32px 0; }

/* ── PANEL GRID ("grid aparente" — padrão comp-grid do DS) ─────────────────── */
/* Usa gap: 2px com background = cor da linha, criando separadores visíveis     */
.lp-panel-grid {
  display: grid;
  gap: 2px;
  background: var(--n-700);
  border-radius: var(--r-2xl);
  overflow: clip;
}
.lp-panel-grid--2 { grid-template-columns: 1fr 1fr; }
.lp-panel-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lp-panel {
  padding: 40px 32px;
  background: var(--bg-base);
}
.lp-panel--elevated { background: var(--bg-elevated); }
.lp-panel--surface  { background: var(--bg-surface); }
.lp-panel--stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ── TAGS ────────────────────────────────────────────────────────────────────── */
.lp-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-start; margin-bottom: 32px; }
.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--r-full);
  padding: 5px 10px;
  border: 1px solid transparent;
  line-height: 1;
}
.lp-tag svg { width: 10px; height: 10px; stroke-width: 2.5; flex-shrink: 0; }
.lp-tag--lime   { color: var(--lime-500);   background: rgba(67,251,108,.08);  border-color: rgba(67,251,108,.25); }
.lp-tag--teal   { color: var(--teal-500);   background: rgba(0,217,232,.08);   border-color: rgba(0,217,232,.25); }
.lp-tag--orange { color: var(--orange-500); background: rgba(255,107,43,.08);  border-color: rgba(255,107,43,.35); }
.lp-tag--neutral{ color: var(--text-2);     background: var(--bg-elevated);    border-color: var(--border-mid); }

/* ── CHECK-LIST COLOR VARIANTS ───────────────────────────────────────────────── */
.lp-check-list--teal li::before { color: var(--teal-500); }

/* ── STAT COLOR VARIANTS ─────────────────────────────────────────────────────── */
.lp-stat-num--teal   { color: var(--teal-500); }
.lp-stat-num--orange { color: var(--orange-500); }

/* ── OVERLINE COLOR VARIANTS ─────────────────────────────────────────────────── */
.lp-overline--orange { color: var(--orange-500); }

/* ── TESTIMONIAL COLOR VARIANTS ───────────────────────────────────────────────── */
.lp-testimonial-mark--teal   { color: var(--teal-500); }
.lp-testimonial-mark--orange { color: var(--orange-500); }

/*
 * Decisão estética deliberada — sombra hover nos testimonials usa variantes -900
 * (escuras, quase invisíveis no fundo dark) em todas as cores, inclusive orange e lime.
 * O padrão do DS usa -500 (vivido) para orange/lime nos .card; aqui a escolha é
 * intencional: o hover sinaliza interatividade pelo border + translate, sem a sombra
 * vivida que chamaria atenção excessiva num bloco de prova social.
 * Alinhado com o padrão de teal-900 já documentado na paleta como "sombra hover".
 */
.lp-testimonial--orange:hover {
  border-color: var(--orange-500);
  transform: translateX(4px) translateY(-4px);
  box-shadow: -5px 6px 0 var(--orange-900);
}
.lp-testimonial--lime:hover {
  border-color: var(--lime-500);
  transform: translateX(4px) translateY(-4px);
  box-shadow: -5px 6px 0 var(--lime-900);
}

/* ── PROBLEMA — BENTO (Seção 2) ─────────────────────────────────────────────── */
.lp-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 12px;
  margin-top: 40px;
}

.lp-bento-cell {
  background: var(--bg-elevated);
  border: 1px solid var(--n-700);
  border-radius: var(--r-2xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-bento-num {
  font-family: var(--font-brand);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--lime-500);
  line-height: 1;
}
.lp-bento-num--dim { color: rgba(67,251,108,.3); }

.lp-bento-01  { grid-column: 1; grid-row: 1; }
.lp-bento-02  { grid-column: 1; grid-row: 2; }
.lp-bento-img { grid-column: 2; grid-row: 1 / 4; }
.lp-bento-03  { grid-column: 1; grid-row: 3; }

.lp-bento-img .img-ph { height: 100%; min-height: 400px; }

.lp-problema-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* .lp-tag e variantes definidos na seção ── TAGS acima */

/* ── FORM STATUS (lead form) ───────────────────────────────────────────────── */
.form-status {
  font-size: 13px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: var(--r-lg);
  border: 1px solid transparent;
}
.form-status--success {
  color: var(--success);
  background: rgba(52,211,153,.10);
  border-color: rgba(52,211,153,.35);
}
.form-status--error {
  color: var(--error);
  background: rgba(248,113,113,.10);
  border-color: rgba(248,113,113,.35);
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────────────────────────── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
.anim-fade-up.is-visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 80ms; }
.anim-delay-2 { transition-delay: 160ms; }
.anim-delay-3 { transition-delay: 240ms; }
.anim-delay-4 { transition-delay: 320ms; }
.anim-delay-5 { transition-delay: 400ms; }
