/* ============================================================
   PALESTRA CORPORATIVA — landing page
   Extends the livro.carratu.com.br design system (styles.css +
   desktop-styles.css). Only NEW components + responsive layout.
   Loaded LAST so it can override fixed desktop sizing fluidly.
   ============================================================ */

/* Derived accents (from the brand palette — no new hues invented) */
:root {
  --c-orange: var(--orange-neon);
  --c-orange-glow: var(--orange-glow);
  --c-teal: var(--teal-bright);
  --c-teal-glow: var(--teal-glow);
  /* warm gold + cool green, derived in oklch from the existing two */
  --c-gold: oklch(0.82 0.13 75);
  --c-gold-glow: oklch(0.82 0.13 75 / 0.45);
  --c-green: oklch(0.78 0.11 178);
  --c-green-glow: oklch(0.78 0.11 178 / 0.4);
}

/* ---------- Page shell (real responsive site, not 1440 mock) ---------- */
.lp-page {
  position: relative;
  z-index: 2;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
}
.lp-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Entrance: disabled — content is always visible (reliability over polish).
   .reveal kept as a harmless hook in the markup. */
.reveal { opacity: 1; transform: none; }
@keyframes lp-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* Section rhythm */
.lp-sec { padding: 96px 0; position: relative; }
.lp-sec + .lp-sec { border-top: 1px solid var(--hairline); }
.lp-sec-head { max-width: 760px; margin-bottom: 52px; }
.lp-sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lp-sec-head.center .d-eyebrow { justify-content: center; }

/* Section titles fluidly responsive (override fixed desktop px) */
.d-headline { font-size: clamp(40px, 7.2vw, 84px); margin: 22px 0 26px; }
.d-section-title { font-size: clamp(32px, 5vw, 60px); }
.d-massive { font-size: clamp(60px, 14vw, 180px); }

/* ============================================================
   NAV
   ============================================================ */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 10, 9, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hairline);
}
.lp-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lp-nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.lp-nav-links a {
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.lp-nav-links a:hover { color: var(--orange-neon); }
.lp-nav .d-nav-cta { text-decoration: none; flex: 0 0 auto; white-space: nowrap; }
.lp-nav-inner > a:first-child { flex: 0 0 auto; }

/* Hamburger (mobile only) */
.lp-nav-burger {
  display: none;
  flex: 0 0 auto;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.lp-nav-burger:hover { border-color: var(--ink-mute); }
.lp-nav-burger .bz {
  display: block;
  width: 19px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.lp-nav.open .lp-nav-burger .bz:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav.open .lp-nav-burger .bz:nth-child(2) { opacity: 0; }
.lp-nav.open .lp-nav-burger .bz:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown panel */
.lp-mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  background: rgba(11, 10, 9, 0.97);
  border-top: 1px solid var(--hairline);
  transition: max-height 0.32s ease;
}
.lp-nav.open .lp-mobile-menu { max-height: 460px; }
.lp-mobile-menu-inner {
  padding: 10px 22px 22px;
  display: flex;
  flex-direction: column;
}
.lp-mobile-menu a {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid var(--hairline);
}
.lp-mobile-menu a:last-child { border-bottom: 0; }
.lp-mobile-menu .lp-mm-cta {
  margin-top: 16px;
  text-align: center;
  color: #fff;
  background: var(--orange);
  border: 1px solid var(--orange-deep);
  border-radius: 999px;
  padding: 15px 18px;
  font-weight: 700;
  box-shadow: 0 0 0 1px var(--orange-neon) inset, 0 6px 24px rgba(209, 115, 67, 0.3);
}

/* Brand logos (header + footer) */
.lp-brand { display: inline-flex; align-items: center; }
.lp-brand img { height: 27px; width: auto; display: block; }
.lp-foot-carratu { display: inline-flex; align-items: center; gap: 12px; }
.lp-foot-carratu img { height: 17px; width: auto; display: block; opacity: 0.95; }

/* Keep the wordmark on two clean lines, never wrapping mid-word */
.wordmark .top, .wordmark .bot { white-space: nowrap; }

/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60vw 44vh at 82% 26%, rgba(209, 115, 67, 0.18), transparent 60%),
    radial-gradient(ellipse 42vw 32vh at 12% 84%, rgba(47, 123, 134, 0.16), transparent 65%);
}
.lp-hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 76px 40px 88px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.lp-hero-content { position: relative; z-index: 2; }
.lp-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 4px 0 28px;
}
.lp-hero .d-btn { text-decoration: none; }
.lp-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--ink-mute);
  letter-spacing: -0.005em;
}
.lp-trust b { color: var(--ink-soft); font-weight: 700; }
.lp-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong); display: inline-block; }

/* Photo frame (shared by hero / author / proof) */
.lp-photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(135deg, var(--surface-3), var(--surface-1));
}
.lp-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.05) brightness(0.92);
}
.lp-photo.warm img { filter: contrast(1.03) saturate(1.02); }
.lp-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(11, 10, 9, 0.55), transparent 45%),
    radial-gradient(ellipse at 70% 20%, rgba(209, 115, 67, 0.16), transparent 55%);
  pointer-events: none;
}
/* Placeholder text behind broken/empty images */
.lp-photo .ph-label {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  color: var(--ink-mute);
}
.lp-photo .ph-label .ph-ic { color: var(--orange-neon); opacity: 0.7; }
.lp-photo .ph-label .ph-name {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lp-photo .ph-label .ph-hint { font-size: 11px; color: var(--ink-faint); }
.lp-photo img { position: relative; z-index: 1; }
.lp-photo img.img-failed { display: none; }

.lp-hero-photo { height: 540px; }

/* ============================================================
   AUTHORITY STRIP (§3)
   ============================================================ */
.lp-authority {
  background: var(--bg-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.lp-authority-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.lp-stat {
  padding: 40px 24px;
  border-right: 1px solid var(--hairline);
  text-align: center;
}
.lp-stat:last-child { border-right: 0; }
.lp-stat .num {
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--orange-neon);
  text-shadow: 0 0 14px var(--orange-glow);
}
.lp-stat .num.num-nowrap { white-space: nowrap; }
.lp-stat:nth-child(2) .num,
.lp-stat:nth-child(4) .num { color: var(--teal-bright); text-shadow: 0 0 14px var(--teal-glow); }
.lp-stat .lbl {
  margin-top: 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
}

/* ============================================================
   PROBLEM (§4)
   ============================================================ */
.lp-problem-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.lp-quote-inline {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 2px solid var(--teal-bright);
  background: rgba(47, 123, 134, 0.08);
  border-radius: 0 12px 12px 0;
}
.lp-quote-inline p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.lp-quote-inline cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-bright);
}

/* ============================================================
   TRAILS (§5) — 4 parallel cards, distinct accent each
   ============================================================ */
.lp-trails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.lp-trail {
  --accent: var(--c-orange);
  --accent-glow: var(--c-orange-glow);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.lp-trail::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
  opacity: 0.9;
}
.lp-trail:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.lp-trail.c2 { --accent: var(--c-teal); --accent-glow: var(--c-teal-glow); }
.lp-trail.c3 { --accent: var(--c-gold); --accent-glow: var(--c-gold-glow); }
.lp-trail.c4 { --accent: var(--c-green); --accent-glow: var(--c-green-glow); }

.lp-trail .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  padding: 6px 12px;
  border-radius: 999px;
}
.lp-trail h3 {
  margin: 18px 0 6px;
  font-weight: 800;
  font-size: 23px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}
.lp-trail .lede {
  margin: 0 0 18px;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: -0.005em;
}
.lp-trail p.desc {
  margin: 0 0 22px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.lp-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lp-tool {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--surface-1);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 7px 13px;
}
.lp-note {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: -0.005em;
}
.lp-note b { color: var(--ink-soft); font-weight: 600; }

/* ============================================================
   PROCESS (§6) — numbered 01→04
   ============================================================ */
.lp-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.lp-step {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
  position: relative;
}
.lp-step .step-num {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--orange-neon);
  text-shadow: 0 0 12px var(--orange-glow);
}
.lp-step .step-bar {
  width: 34px; height: 2px;
  background: var(--border-strong);
  margin: 16px 0 18px;
}
.lp-step h4 {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.lp-step p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============================================================
   COMPROMISSO SOCIAL (§ social action — 15%)
   ============================================================ */
.lp-social { background: linear-gradient(180deg, transparent, rgba(15, 28, 31, 0.55), transparent); }
.lp-social .lp-sec-head { margin-bottom: 40px; }

.lp-social-figure {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 44px;
  align-items: center;
  background: var(--surface-teal);
  border: 1px solid var(--border-teal);
  border-radius: 22px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.lp-social-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(91, 192, 206, 0.16), transparent 55%);
  pointer-events: none;
}
.lp-social-pct {
  font-weight: 800;
  font-size: clamp(88px, 12vw, 148px);
  line-height: 0.86;
  letter-spacing: -0.05em;
  color: var(--teal-bright);
  text-shadow: 0 0 30px var(--teal-glow);
  position: relative;
}
.lp-social-pct small {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--teal-soft);
  text-shadow: none;
  margin-top: 14px;
  max-width: 240px;
  line-height: 1.4;
}
.lp-social-figure-text p {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
}
.lp-social-figure-text p b { color: var(--teal-bright); font-weight: 700; }
.lp-social-figure-text p em { font-style: italic; color: var(--ink); }
.lp-social-figure-text .sig {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
}

.lp-social-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.lp-social-step {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px;
  position: relative;
}
.lp-social-step .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-bright);
  background: rgba(47, 123, 134, 0.12);
  border: 1px solid var(--border-teal);
  margin-bottom: 18px;
}
.lp-social-step .st-num {
  position: absolute;
  top: 26px;
  right: 26px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}
.lp-social-step h4 {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.lp-social-step p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .lp-social-figure { grid-template-columns: 1fr; gap: 22px; padding: 32px; text-align: center; }
  .lp-social-pct small { margin-left: auto; margin-right: auto; }
  .lp-social-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   AUTHOR (§7)
   ============================================================ */
.lp-author-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.lp-author-photo { min-height: 520px; }
.lp-author-photo .name-overlay {
  position: absolute;
  left: 28px; bottom: 26px;
  z-index: 2;
}
.lp-author-photo .name-overlay .role {
  display: block;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-neon);
  margin-bottom: 8px;
}
.lp-author-photo .name-overlay .nm {
  font-weight: 800;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 0.95;
}
.lp-author-content { display: flex; flex-direction: column; justify-content: center; }
.lp-author-content .bio {
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  margin: 0;
}
.lp-author-content .bio b { color: var(--ink); font-weight: 700; }

/* ============================================================
   BOOK OFFER (§10)
   ============================================================ */
.lp-offer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 52px;
  position: relative;
  overflow: hidden;
}
.lp-offer-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(209, 115, 67, 0.14), transparent 55%),
    radial-gradient(ellipse at 90% 30%, rgba(47, 123, 134, 0.1), transparent 55%);
  pointer-events: none;
}
.lp-offer-img {
  position: relative;
  z-index: 1;
}
.lp-offer-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6))
          drop-shadow(0 0 40px rgba(255, 176, 117, 0.18));
}
.lp-offer-content { position: relative; z-index: 1; }
.lp-offer-content .lp-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.lp-offer-content .d-btn { text-decoration: none; }

/* ============================================================
   FORM (§11)
   ============================================================ */
.lp-form-section {
  background:
    radial-gradient(ellipse 50vw 40vh at 50% 0%, rgba(209, 115, 67, 0.1), transparent 60%);
}
.lp-form-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.lp-promise {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-promise li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.lp-promise li .ck {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(91, 192, 206, 0.1);
  border: 1px solid rgba(91, 192, 206, 0.3);
  color: var(--teal-bright);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 24px;
}

.lp-form {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.lp-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.lp-field { display: flex; flex-direction: column; gap: 8px; }
.lp-field.full { grid-column: 1 / -1; }
.lp-field label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.lp-field label .req { color: var(--orange-neon); margin-left: 2px; }
.lp-field input,
.lp-field select,
.lp-field textarea {
  width: 100%;
  background: var(--surface-1);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.lp-field textarea { resize: vertical; min-height: 96px; }
.lp-field select { cursor: pointer; appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-mute) 50%), linear-gradient(135deg, var(--ink-mute) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.lp-field input::placeholder,
.lp-field textarea::placeholder { color: var(--ink-faint); }
.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus {
  outline: none;
  border-color: var(--orange-neon);
  box-shadow: 0 0 0 3px rgba(255, 176, 117, 0.14);
}
.lp-field.error input,
.lp-field.error select,
.lp-field.error textarea,
.lp-checks.error {
  border-color: #C0563A;
  box-shadow: 0 0 0 3px rgba(192, 86, 58, 0.16);
}
.lp-field .err-msg {
  display: none;
  font-size: 11.5px;
  font-weight: 500;
  color: #E08763;
}
.lp-field.error .err-msg { display: block; }

/* Checkbox group */
.lp-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0 2px;
  border-radius: 10px;
}
.lp-check {
  position: relative;
}
.lp-check input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.lp-check span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--surface-1);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 9px 15px;
  transition: all 0.15s;
}
.lp-check span::before {
  content: "";
  width: 14px; height: 14px;
  border-radius: 4px;
  border: 1.5px solid var(--ink-mute);
  flex: 0 0 14px;
  transition: all 0.15s;
}
.lp-check input:checked + span {
  color: var(--ink);
  border-color: var(--orange-deep);
  background: rgba(209, 115, 67, 0.1);
}
.lp-check input:checked + span::before {
  background: var(--orange-neon);
  border-color: var(--orange-neon);
  box-shadow: 0 0 10px var(--orange-glow);
}
.lp-check input:focus-visible + span {
  outline: 2px solid var(--teal-bright);
  outline-offset: 2px;
}

.lp-form .submit-row { margin-top: 26px; }
.lp-form .d-btn-full { width: 100%; }
.lp-form .form-fine {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
}
.lp-form .form-fine b { color: var(--ink-soft); font-weight: 600; }
.lp-form .form-success {
  background: rgba(47, 123, 134, 0.12);
  border: 1px solid var(--border-teal);
  border-radius: 12px;
  padding: 20px 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.lp-form .form-success strong { color: var(--teal-bright); font-weight: 700; }

/* ============================================================
   FAQ wrapper + Footer reuse
   ============================================================ */
.lp-faq-wrap { max-width: 900px; margin: 0 auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero-photo { height: 380px; order: -1; }
  .lp-problem-grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-process { grid-template-columns: repeat(2, 1fr); }
  .lp-author-grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-author-photo { min-height: 420px; }
  .lp-formato-photo { order: -1; }
  .lp-video-grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-video-frame { max-width: 300px; }
  .lp-offer-grid { grid-template-columns: 1fr; gap: 36px; padding: 40px; }
  .lp-offer-img { max-width: 360px; margin: 0 auto; }
  .lp-form-grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-authority-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stat:nth-child(2) { border-right: 0; }
  .lp-stat:nth-child(1), .lp-stat:nth-child(2) { border-bottom: 1px solid var(--hairline); }
}
@media (max-width: 1240px) {
  .lp-nav-links { display: none; }
  .lp-nav-inner > .d-nav-cta { display: none; }
  .lp-nav-burger { display: inline-flex; }
  .lp-mobile-menu { display: block; }
}
@media (max-width: 700px) {
  .lp-wrap, .lp-nav-inner, .lp-hero-grid, .lp-authority-grid { padding-left: 22px; padding-right: 22px; }
  .lp-sec { padding: 64px 0; }
  .lp-trails { grid-template-columns: 1fr; }
  .lp-field-grid { grid-template-columns: 1fr; }
  .lp-form { padding: 26px; }
  .lp-offer-grid { padding: 28px; }
  .lp-hero-grid { padding-top: 52px; padding-bottom: 60px; }
  .lp-trail { padding: 28px 24px; }
}

/* ============================================================
   FORMATO photo + DEPOIMENTOS (Instagram story cards)
   ============================================================ */
/* Formato photo — square so it aligns with the side text block */
.lp-formato-photo {
  aspect-ratio: 1 / 1;
  min-height: 0;
  align-self: center;
  border-radius: 18px;
}

/* ---- Depoimento em vídeo (vertical) ---- */
.lp-video-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.lp-video-col { display: flex; justify-content: center; }
.lp-video-frame {
  position: relative;
  width: 100%;
  max-width: 330px;
  aspect-ratio: 478 / 850;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #14110F;
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(255, 176, 117, 0.12);
}
.lp-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #14110F;
}
.lp-video-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  pointer-events: none;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F5EFE3;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 7px 13px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
