/* ============================================================
   LP LIVE 21/04 — app.css · v3
   Helvetica/Inter BOLD display. Refined shadows + fluid motion.
   Mobile-first. 390 · 768 · 1024 · 1280.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-primary-light);
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--color-verde-folha-900);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(164, 195, 192, 0.28);
}

img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }

/* Display stack base */
.hero__h1, .proof__h2, .pillar__title, .faq__title,
.form-card__title, .form-success__title, .receive__title,
.authority__caption-label {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-kerning: normal;
  text-wrap: balance;
}

/* ============================================================
   HERO (DOBRA 1)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--bg-primary-dark);
  color: var(--text-on-dark);
  padding: var(--space-5) var(--space-4) var(--space-7);
  overflow: hidden;
}

/* Radial glow accent — subtle warmth behind headline */
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 60% at 25% 35%, rgba(164, 195, 192, 0.10), transparent 60%),
    radial-gradient(ellipse 40% 50% at 75% 20%, rgba(11, 52, 2, 0.28), transparent 65%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  align-items: center;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  animation: fade-in 500ms var(--ease-standard) both;
}
.hero__copy > * { max-width: 56ch; margin-left: auto; margin-right: auto; }
.hero__brand { margin-bottom: 4px; }
@media (min-width: 1024px) {
  .hero__copy {
    align-items: flex-start;
    text-align: left;
  }
  .hero__copy > * { margin-left: 0; margin-right: 0; }
}

/* ----------  BRAND LOGO  ---------- */
.hero__brand {
  display: inline-block;
  margin-bottom: 4px;
  transition: transform var(--motion-normal) var(--ease-standard);
}
.hero__brand:hover { transform: translateY(-1px); }
.hero__brand img {
  width: 200px;
  height: auto;
}

/* Logo recolor — converte logo verde-escuro pra bege-antigo sobre fundos escuros */
.logo-img--light {
  filter:
    brightness(0) invert(93%)
    sepia(9%) saturate(358%)
    hue-rotate(14deg)
    brightness(94%) contrast(90%)
    drop-shadow(0 2px 8px rgba(0,0,0,0.22));
}

/* ----------  LIVE BADGE (destaque AO VIVO)  ---------- */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 12px;
  background: rgba(11, 52, 2, 0.45);
  border: 1px solid rgba(164, 195, 192, 0.35);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-bege-antigo-50);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 1px 0 rgba(237, 228, 210, 0.12) inset,
    0 8px 24px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  max-width: 100%;
}
.live-badge__date, .live-badge__time, .live-badge__label {
  white-space: nowrap;
}
@media (max-width: 420px) {
  .live-badge { font-size: 11px; padding: 8px 12px 8px 10px; gap: 6px; letter-spacing: 0.06em; }
  .live-badge__date { font-size: 10.5px; }
}
.live-badge__dot {
  position: relative;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #FF4D3A;
  flex-shrink: 0;
}
.live-badge__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #FF4D3A;
  opacity: 0.6;
  transform: scale(1);
  animation: pulse-dot 1.6s ease-out infinite;
  pointer-events: none;
}
.live-badge__label {
  color: #FF8A7A;
  letter-spacing: 0.12em;
}
.live-badge__sep { opacity: 0.5; font-weight: 400; }
.live-badge__date { color: var(--color-bege-antigo-50); }
.live-badge__time {
  color: var(--color-verde-menta-300);
  font-weight: 800;
}

@keyframes pulse-dot {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(2.5); opacity: 0;   }
  100% { transform: scale(2.5); opacity: 0;   }
}

/* ----------  H1 — main BOLD + sub italic  ---------- */
.hero__h1 {
  font-weight: 800;
  font-size: clamp(34px, 7.5vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--text-on-dark);
  margin: 0;
}
.hero__h1 mark {
  background: transparent;
  color: var(--color-verde-menta-300);
  padding: 0;
  font-style: italic;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(164, 195, 192, 0.55);
  text-decoration-thickness: 2.5px;
  text-underline-offset: 7px;
  text-decoration-skip-ink: none;
}
.hero__h1 em {
  display: block;
  margin-top: 10px;
  font-style: italic;
  font-weight: 400;
  font-size: 0.5em;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-verde-menta-300);
  opacity: 0.9;
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.75vw, 17.5px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-bege-antigo-50);
  opacity: 0.9;
  max-width: 56ch;
  margin: 0;
}
.hero__sub strong { color: var(--text-on-dark); font-weight: 600; }

/* Hero bullets — scanáveis com check icon menta */
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.5vw, 15.5px);
  line-height: 1.45;
  color: var(--color-bege-antigo-50);
  opacity: 0.94;
}
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}
.hero__bullets strong {
  color: var(--color-verde-menta-300);
  font-weight: 600;
}
.hero__bullet-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-verde-menta-300);
}
/* Mobile alignment — centered col copy mas bullets keep-left readable */
@media (max-width: 1023px) {
  .hero__bullets { max-width: 34ch; }
  .hero__bullets li { justify-content: flex-start; }
}

/* ============================================================
   FORM CARD — refined shadows
   ============================================================ */
.form-wrap { position: relative; width: 100%; }

.form-card, .form-success {
  background: #FFFFFF;
  background: color-mix(in srgb, var(--color-bege-antigo-50) 18%, #FFFFFF 82%);
  color: var(--text-on-light);
  border-radius: 20px;
  padding: var(--space-5);
  box-shadow: var(--shadow-inset), var(--shadow-sm), var(--shadow-xl);
  border: 1px solid rgba(23, 60, 59, 0.06);
  animation: fade-in-up 550ms var(--ease-standard) both;
  animation-delay: 80ms;
}

.form-card__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-verde-folha-900);
  margin: 0 0 8px;
}

/* Badge "INSCRIÇÃO · 100% GRATUITA" — pill destacado, foco na palavra Gratuita */
.badge-free {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 12px;
  background: var(--color-verde-folha-900);
  color: var(--color-bege-antigo-50);
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin: 0 0 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 0 0 1px rgba(164, 195, 192, 0.25),
    0 6px 16px rgba(11, 52, 2, 0.28);
}
.badge-free__label {
  opacity: 0.82;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.badge-free__em {
  color: var(--color-verde-menta-300);
  font-weight: 900;
  letter-spacing: 0.14em;
  position: relative;
  padding: 0 2px;
}
.badge-free__em::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: -2px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.55;
}
.badge-free__dot {
  position: relative;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-verde-menta-300);
  flex-shrink: 0;
}
.badge-free__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-verde-menta-300);
  opacity: 0.6;
  transform: scale(1);
  animation: pulse-menta 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-menta {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(2.3); opacity: 0;   }
  100% { transform: scale(2.3); opacity: 0;   }
}
.form-card__head { margin-bottom: var(--space-4); }
.form-card__title {
  font-weight: 800;
  font-size: clamp(22px, 3.4vw, 26px);
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--text-on-light);
  letter-spacing: -0.025em;
}
.form-card__sub {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-on-light-secondary);
  margin: 0;
}
.form-card__sub strong { color: var(--color-verde-folha-900); font-weight: 600; }

/* Social proof inline — trust booster acima do sub */
.form-card__proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 10px 14px;
  background: color-mix(in srgb, var(--color-verde-folha-900) 7%, transparent);
  border-left: 3px solid var(--color-verde-folha-900);
  border-radius: 0 10px 10px 0;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-verde-tundra-900);
  line-height: 1.4;
}
.form-card__proof strong {
  color: var(--color-verde-folha-900);
  font-weight: 800;
}
.form-card__proof-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-light-secondary);
  margin-bottom: 8px;
}
.field .opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
  font-size: 11px;
}

.field input,
.field select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-on-light);
  background: #FFFFFF;
  border: 1px solid rgba(23, 60, 59, 0.18);
  border-radius: 10px;
  transition:
    border-color var(--motion-normal) var(--ease-standard),
    box-shadow var(--motion-normal) var(--ease-standard),
    background var(--motion-normal) var(--ease-standard);
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder { color: rgba(11, 31, 30, 0.50); font-weight: 400; }
.field input:focus,
.field select:focus {
  border-color: var(--color-verde-folha-900);
  box-shadow:
    0 0 0 4px rgba(11, 52, 2, 0.10),
    0 2px 6px rgba(11, 52, 2, 0.06);
  outline: none;
}

.select { position: relative; }
.select::after {
  content: "";
  position: absolute;
  right: 18px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--color-verde-tundra-900);
  border-bottom: 2px solid var(--color-verde-tundra-900);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.field select { padding-right: 44px; cursor: pointer; }

.field.has-error input,
.field.has-error select {
  border-color: #8C2838;
  box-shadow: 0 0 0 4px rgba(140, 40, 56, 0.10);
}
.err {
  display: block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: #8C2838;
}

/* ----------  BUTTON  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  padding: 18px 28px;
  min-height: 54px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition:
    background var(--motion-normal) var(--ease-standard),
    transform var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-normal) var(--ease-standard);
  text-align: center;
  position: relative;
}
.btn--primary {
  background: var(--accent-action);
  color: var(--text-on-dark);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 6px 14px rgba(11, 52, 2, 0.28),
    0 2px 4px rgba(11, 52, 2, 0.20);
  overflow: hidden;
  isolation: isolate;
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(164, 195, 192, 0.22) 50%,
    transparent 70%
  );
  transform: translateX(-130%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}
.btn--primary:hover::before {
  transform: translateX(130%);
}
.btn--primary > * {
  position: relative;
  z-index: 1;
}
.btn--primary:hover {
  background: #0E4505;
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 12px 28px rgba(11, 52, 2, 0.34),
    0 4px 8px rgba(11, 52, 2, 0.22);
}
.btn--primary:active { transform: translateY(0); }
.btn--block { width: 100%; }
.btn--lg {
  padding: 22px 38px;
  font-size: 16px;
  min-height: 64px;
  border-radius: 12px;
}
.btn__arrow { transition: transform var(--motion-normal) var(--ease-standard); font-weight: 500; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:hover .btn__arrow--up { transform: translateY(-4px); }

.btn__spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(237, 228, 210, 0.35);
  border-top-color: var(--color-bege-antigo-50);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}
.btn[data-state="loading"] .btn__label,
.btn[data-state="loading"] .btn__arrow { display: none; }
.btn[data-state="loading"] .btn__spinner { display: inline-block; }
.btn[data-state="loading"] { cursor: wait; }

.form-card__trust {
  margin: 14px 0 0;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--text-on-light-secondary);
  line-height: 1.45;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.form-card__trust .lock {
  display: inline-block;
  width: 14px; height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  text-indent: -9999px;
}

/* SUCCESS state */
.form-success { text-align: left; }
.form-success__icon { margin-bottom: var(--space-3); }
.form-success__title {
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.1;
  color: var(--text-on-light);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.025em;
}
.form-success p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 10px;
  color: var(--text-on-light);
}
.form-success__sig {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 500;
  font-size: 16px !important;
  color: var(--color-verde-folha-900) !important;
  margin-top: var(--space-3) !important;
}

/* ============================================================
   HERO DESKTOP
   ============================================================ */
@media (min-width: 1024px) {
  .hero {
    padding: var(--space-7) var(--space-6);
    display: flex;
    align-items: center;
  }
  .hero__grid {
    grid-template-columns: minmax(0, 6.2fr) minmax(440px, 5.8fr);
    gap: var(--space-7);
    width: 100%;
  }
  .hero__brand img { width: 200px; }
  .hero__h1 {
    font-size: clamp(42px, 4vw, 56px);
    line-height: 0.98;
    max-width: 15ch;
  }
  .hero__h1 em {
    font-size: 0.44em;
    margin-top: 14px;
  }
  .form-card, .form-success { padding: 40px; border-radius: 24px; }
}
@media (min-width: 1280px) {
  .hero__h1 { font-size: 62px; }
  .hero__grid { gap: var(--space-8); }
}

/* ============================================================
   DOBRA 2 — PROOF
   ============================================================ */
.proof {
  background: var(--bg-primary-light);
  color: var(--text-on-light);
  padding: var(--space-8) var(--space-4);
  position: relative;
}
.proof__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section heads centered */
.learn, .signs { text-align: center; }
.learn .eyebrow, .signs .eyebrow, .learn .proof__h2, .signs .proof__h2 {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-verde-folha-900);
  margin: 0 0 var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 32px; height: 1.5px;
  background: var(--color-verde-folha-900);
  opacity: 0.55;
}

.proof__h2 {
  font-weight: 800;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.032em;
  color: var(--text-on-light);
  margin: 0 auto;
  max-width: 22ch;
  text-wrap: balance;
}

/* Grid items reset alignment — cards stay left-aligned */
.pillar, .signs__item, .receive__item { text-align: left; }

/* ----------  RECEIVE LIST ---------- */
.receive { margin-bottom: var(--space-8); }

.receive__list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 768px) {
  .receive__list { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
}
.receive__item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-4);
  background: #FFFFFF;
  border: 1px solid rgba(23, 60, 59, 0.07);
  border-radius: 14px;
  box-shadow: var(--shadow-inset), var(--shadow-sm), var(--shadow-lg);
  transition: transform var(--motion-normal) var(--ease-standard),
              box-shadow var(--motion-normal) var(--ease-standard);
}
.receive__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-inset), var(--shadow-md), var(--shadow-xl);
}
.receive__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--color-verde-menta-300) 50%, #FFFFFF);
  color: var(--color-verde-folha-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.receive__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 4px;
  color: var(--text-on-light);
  letter-spacing: -0.015em;
}
.receive__body {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: var(--text-on-light-secondary);
}

/* ----------  LEARN / PILLARS  ---------- */
.learn { margin-bottom: var(--space-8); }

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (min-width: 768px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
}
.pillar {
  background: #FFFFFF;
  border: 1px solid rgba(23, 60, 59, 0.07);
  border-radius: 16px;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-inset), var(--shadow-sm), var(--shadow-lg);
  transition: transform var(--motion-normal) var(--ease-standard),
              box-shadow var(--motion-normal) var(--ease-standard);
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-verde-folha-900) 0%, var(--color-verde-tundra-900) 100%);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-inset), var(--shadow-md), var(--shadow-xl);
}
.pillar__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 6vw, 72px);
  line-height: 0.9;
  color: var(--color-verde-folha-900);
  opacity: 0.22;
  margin: 0 0 8px;
  letter-spacing: -0.06em;
}
.pillar__kicker {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-verde-folha-900);
  margin: 0;
}
.pillar__title {
  font-weight: 800;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.2;
  margin: 6px 0 8px;
  color: var(--text-on-light);
  letter-spacing: -0.02em;
}
.pillar__body {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  color: var(--text-on-light-secondary);
}

/* ============================================================
   AUTHORITY — redesigned composition
   ============================================================ */
.authority {
  margin: var(--space-9) auto var(--space-8);
  max-width: 1100px;
}
.authority__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 900px) {
  .authority__grid {
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: var(--space-7);
  }
}
.authority__photo {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow:
    0 8px 16px rgba(11, 31, 30, 0.10),
    0 36px 80px rgba(11, 31, 30, 0.22);
  transform: rotate(-1deg);
  transition: transform var(--motion-slow) var(--ease-standard);
  contain: paint;
}
.authority__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 31, 30, 0.55) 100%);
  pointer-events: none;
}
.authority__photo:hover { transform: rotate(0) translateY(-4px); }
.authority__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.authority__caption {
  position: absolute;
  left: var(--space-4);
  right: var(--space-4);
  bottom: var(--space-4);
  color: var(--color-bege-antigo-50);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.authority__caption-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.authority__caption-role {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.88;
}

.authority__content { display: flex; flex-direction: column; gap: var(--space-4); }

.pull-quote {
  margin: 0;
  position: relative;
  padding-left: var(--space-4);
}
.pull-quote__bar {
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 4px;
  background: linear-gradient(180deg, var(--color-verde-folha-900), var(--color-verde-tundra-900));
  border-radius: 2px;
}
.pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.022em;
  color: var(--color-verde-tundra-900);
  margin: 0;
  text-wrap: balance;
}

/* Stat chips — 3 credenciais em destaque antes da bio */
.authority__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: var(--space-4);
  padding: 18px 8px;
  background: color-mix(in srgb, var(--color-verde-folha-900) 5%, transparent);
  border-radius: 14px;
  border: 1px solid rgba(11, 52, 2, 0.10);
}
.authority__stat {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid rgba(23, 60, 59, 0.14);
}
.authority__stat:last-child { border-right: none; }

.authority__stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--color-verde-folha-900);
  margin-bottom: 6px;
}
.authority__stat-affix {
  font-size: 0.72em;
  font-weight: 800;
  opacity: 0.8;
  margin-left: 1px;
  letter-spacing: -0.02em;
}
.authority__stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-verde-tundra-900);
  line-height: 1.25;
  opacity: 0.85;
}

@media (max-width: 560px) {
  .authority__stats {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4px 14px;
  }
  .authority__stat {
    border-right: none;
    border-bottom: 1px solid rgba(23, 60, 59, 0.12);
    padding: 14px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    text-align: left;
  }
  .authority__stat:last-child { border-bottom: none; }
  .authority__stat-num { margin-bottom: 0; }
  .authority__stat-label { text-align: left; }
}

/* Bio refinada — legível, hierarquia clara */
.authority__bio {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.authority__bio p {
  font-family: var(--font-sans);
  font-size: clamp(15.5px, 1.6vw, 17px);
  line-height: 1.65;
  color: var(--color-verde-tundra-900);
  margin: 0;
  letter-spacing: -0.003em;
}
.authority__lede {
  font-weight: 500 !important;
  color: var(--color-verde-carvao-950) !important;
}
.authority__bio strong {
  color: var(--color-verde-carvao-950);
  font-weight: 700;
}

/* 600% highlight — mesma família Helvetica, bold inline com mark highlight */
.highlight-num {
  background: linear-gradient(180deg, transparent 55%, rgba(11, 52, 2, 0.16) 55%);
  color: var(--color-verde-folha-900);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2em;
  padding: 0 4px 0 2px;
  border-radius: 3px;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

/* ============================================================
   SIGNS — "Reconhece esses sinais?" (6 dores identificação)
   ============================================================ */
.signs {
  max-width: 1100px;
  margin: 0 auto var(--space-8);
}

.signs__list {
  list-style: none;
  counter-reset: signs;
  padding: 0;
  margin: var(--space-6) 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 768px) {
  .signs__list {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

.signs__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-4) var(--space-5);
  background: #FFFFFF;
  border: 1px solid rgba(23, 60, 59, 0.07);
  border-radius: 14px;
  box-shadow: var(--shadow-inset), var(--shadow-sm), var(--shadow-lg);
  transition: transform var(--motion-normal) var(--ease-standard),
              box-shadow var(--motion-normal) var(--ease-standard),
              border-color var(--motion-normal) var(--ease-standard);
}
.signs__item:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 52, 2, 0.18);
  box-shadow: var(--shadow-inset), var(--shadow-md), var(--shadow-xl);
}

.signs__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 0.9;
  color: color-mix(in srgb, var(--color-verde-menta-300) 75%, transparent);
  letter-spacing: -0.05em;
  display: inline-block;
  padding-top: 2px;
}

.signs__text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-on-light-secondary);
  margin: 0;
}
.signs__text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(16px, 1.7vw, 18.5px);
  line-height: 1.3;
  letter-spacing: -0.018em;
  color: var(--color-verde-carvao-950);
  margin-bottom: 8px;
}

/* ============================================================
   FAQ (kept for fallback — unused on current layout)
   ============================================================ */
.faq { max-width: 860px; margin: 0 auto var(--space-7); }
.faq__title {
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  margin: 0 0 var(--space-4);
  color: var(--text-on-light);
  letter-spacing: -0.028em;
}
.faq__item {
  border-top: 1px solid rgba(23, 60, 59, 0.18);
  padding: var(--space-3) 0;
}
.faq__item:last-child { border-bottom: 1px solid rgba(23, 60, 59, 0.18); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  padding: 6px 0;
  color: var(--text-on-light);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__q {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(16px, 1.9vw, 18px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text-on-light);
}
.faq__toggle {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-verde-folha-900);
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--motion-normal) var(--ease-standard);
  flex-shrink: 0;
}
.faq__item[open] .faq__toggle { transform: rotate(45deg); }
.faq__a {
  padding: var(--space-2) 0;
  animation: fade-slide 250ms var(--ease-standard);
}
.faq__a p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-on-light-secondary);
  margin: 0;
  max-width: 64ch;
}

/* ----------  CTA FINAL  ---------- */
.cta-final {
  text-align: center;
  padding: var(--space-6) 0 0;
}
.cta-final__note {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-verde-tundra-900);
  margin: var(--space-3) 0 0;
  opacity: 0.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot {
  background: var(--color-verde-carvao-950);
  color: var(--color-bege-antigo-50);
  padding: var(--space-6) var(--space-4);
}
.site-foot__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
}
@media (min-width: 768px) {
  .site-foot__inner { flex-direction: row; justify-content: space-between; align-items: center; }
}
.site-foot__brand img { width: 150px; height: auto; }
.site-foot__brand .logo-img--light {
  filter:
    brightness(0) invert(93%)
    sepia(9%) saturate(358%)
    hue-rotate(14deg)
    brightness(94%) contrast(90%);
  opacity: 0.88;
}
.site-foot__meta {
  font-family: var(--font-sans);
  font-size: 13px;
  opacity: 0.72;
  margin: 0;
}
.site-foot__meta a { text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-slide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms var(--ease-standard), transform 550ms var(--ease-standard);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   STICKY CTA BAR — aparece quando form sai do viewport
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(11, 31, 30, 0.94);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-top: 1px solid rgba(164, 195, 192, 0.18);
  box-shadow: 0 -12px 40px rgba(0,0,0,0.28);
  transform: translateY(110%);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: var(--space-3);
  align-items: center;
  justify-content: space-between;
}
.sticky-cta__text {
  flex: 1;
  min-width: 0;
  color: var(--color-bege-antigo-50);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta__text strong {
  display: block;
  color: var(--color-verde-menta-300);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 10.5px;
  margin-bottom: 2px;
  white-space: nowrap;
}
.sticky-cta__btn {
  padding: 12px 20px;
  min-height: 44px;
  font-size: 13.5px;
  flex-shrink: 0;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .sticky-cta__inner { gap: var(--space-5); }
  .sticky-cta__text { font-size: 14px; white-space: normal; overflow: visible; }
  .sticky-cta__btn { padding: 14px 26px; min-height: 48px; font-size: 14px; }
}

/* Add bottom padding to body so sticky CTA doesn't cover footer content */
body.sticky-cta-active {
  padding-bottom: 72px;
}
@media (min-width: 768px) {
  body.sticky-cta-active { padding-bottom: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
