/* ============================================
   Trilha Detran — LP de alta conversão
   Mobile-first, verde Detran, moderno e clean
   ============================================ */

:root {
  /* Verde Detran - paleta principal */
  --green-50:  #ecfdf3;
  --green-100: #d1fadf;
  --green-200: #a6f4c5;
  --green-300: #6ce9a6;
  --green-400: #32d583;
  --green-500: #12b76a;
  --green-600: #039855;   /* primário */
  --green-700: #027a48;   /* hover/escuro */
  --green-800: #05603a;
  --green-900: #054f31;

  /* Neutros */
  --ink-900: #0c1116;
  --ink-800: #1a2027;
  --ink-700: #2b333d;
  --ink-600: #475467;
  --ink-500: #667085;
  --ink-400: #98a2b3;
  --ink-300: #d0d5dd;
  --ink-200: #e4e7ec;
  --ink-100: #f2f4f7;
  --ink-50:  #f9fafb;
  --white:   #ffffff;

  /* Acentos */
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --red-500:   #ef4444;
  --red-600:   #dc2626;

  /* Tipografia */
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espaçamento */
  --section-py: 64px;
  --container: 1180px;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(16, 24, 40, 0.12);
  --shadow-green: 0 8px 24px rgba(3, 152, 85, 0.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   TIMER BAR (topo)
   ============================================ */
.timer-bar {
  background: linear-gradient(90deg, var(--ink-900), var(--ink-800));
  color: var(--white);
  padding: 10px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.timer-bar__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.timer-bar__label::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--red-500);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.timer-bar__clock {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  background: rgba(255,255,255,0.12);
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--ink-100);
  padding: 14px 0;
  position: sticky;
  top: 38px;
  z-index: 40;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.95);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.logo__mark {
  width: 32px; height: 32px;
  background: var(--green-600);
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  box-shadow: var(--shadow-green);
}

.nav__cta {
  background: var(--green-600);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.nav__cta:hover { background: var(--green-700); transform: translateY(-1px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--green-50), transparent 70%),
    var(--white);
  padding: 40px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--ink-200) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent 80%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-50);
  color: var(--green-700);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--green-200);
}
.hero__badge .dot {
  width: 6px; height: 6px;
  background: var(--green-500);
  border-radius: 50%;
}

.hero__title {
  font-size: clamp(32px, 7vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--green-600), var(--green-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 8px;
  background: var(--green-200);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.6;
}

.hero__sub {
  font-size: clamp(16px, 4vw, 19px);
  color: var(--ink-600);
  max-width: 540px;
  text-wrap: pretty;
}

.hero__cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-600);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 17px;
  box-shadow: var(--shadow-green);
  transition: all 0.2s;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(3, 152, 85, 0.4); }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:active { transform: translateY(0); }

.btn-primary__arrow {
  transition: transform 0.2s;
}
.btn-primary:hover .btn-primary__arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-800);
  background: var(--white);
  border: 1.5px solid var(--ink-200);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--green-600); color: var(--green-700); }

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-600);
}
.hero__avatars {
  display: flex;
}
.hero__avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  background: linear-gradient(135deg, var(--green-300), var(--green-600));
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__avatars span:nth-child(2) { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.hero__avatars span:nth-child(3) { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.hero__avatars span:nth-child(4) { background: linear-gradient(135deg, #f87171, #ef4444); }

.stars { color: var(--amber-500); letter-spacing: 1px; }

.hero__bullets {
  display: grid;
  gap: 10px;
}
.hero__bullets li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14.5px;
  color: var(--ink-700);
  list-style: none;
  font-weight: 500;
}
.hero__bullets svg {
  flex-shrink: 0;
  color: var(--green-600);
}

/* HERO MOCK (right side) */
.hero__mock {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  box-shadow: var(--shadow-lg);
  aspect-ratio: 9 / 16;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  border: 8px solid var(--ink-900);
}

.mock-screen {
  position: absolute;
  inset: 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.mock-statusbar {
  background: var(--green-700);
  color: var(--white);
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
}
.mock-header {
  background: var(--green-600);
  color: var(--white);
  padding: 14px 16px;
}
.mock-header h4 { font-size: 14px; font-weight: 700; }
.mock-header small { font-size: 11px; opacity: 0.85; }

.mock-progress {
  padding: 14px 16px;
  background: var(--green-50);
  border-bottom: 1px solid var(--ink-100);
}
.mock-progress__bar {
  height: 6px;
  background: var(--ink-200);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 6px;
}
.mock-progress__bar div {
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, var(--green-500), var(--green-600));
  border-radius: 3px;
}
.mock-progress small { font-size: 10px; color: var(--ink-600); font-weight: 600; }

.mock-question {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-question__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.35;
}
.mock-question__img {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  height: 70px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 28px;
}
.mock-option {
  padding: 9px 12px;
  border: 1.5px solid var(--ink-200);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
}
.mock-option .ix {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-300);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-500);
  flex-shrink: 0;
}
.mock-option.is-correct {
  border-color: var(--green-500);
  background: var(--green-50);
  color: var(--green-800);
  font-weight: 600;
}
.mock-option.is-correct .ix {
  background: var(--green-500);
  border-color: var(--green-500);
  color: var(--white);
}

.hero__mock-floating {
  position: absolute;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}
.hero__mock-floating--1 {
  top: 10%;
  left: -10px;
}
.hero__mock-floating--2 {
  bottom: 12%;
  right: -10px;
  animation-delay: 1.5s;
}
.hero__mock-floating .ico {
  width: 28px; height: 28px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 50%;
  display: grid; place-items: center;
}

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

/* ============================================
   LOGO BAR (selos)
   ============================================ */
.logobar {
  background: var(--ink-50);
  padding: 22px 0;
  border-block: 1px solid var(--ink-100);
}
.logobar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.logobar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: var(--section-py) 0; }

.section-head {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-title {
  font-size: clamp(28px, 5.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink-900);
  max-width: 720px;
  text-wrap: balance;
}
.section-title em {
  font-style: normal;
  color: var(--green-600);
}

.section-sub {
  font-size: 17px;
  color: var(--ink-600);
  max-width: 560px;
  text-wrap: pretty;
}

/* ============================================
   PROBLEM
   ============================================ */
.problem {
  background: var(--ink-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(3, 152, 85, 0.18), transparent 70%);
  pointer-events: none;
}
.problem .section-title { color: var(--white); }
.problem .section-eyebrow { color: var(--green-400); }
.problem .section-sub { color: var(--ink-300); }

.problem-grid {
  display: grid;
  gap: 14px;
  position: relative;
}
.problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.3s;
}
.problem-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(3, 152, 85, 0.3);
  transform: translateY(-2px);
}
.problem-card .x {
  width: 36px; height: 36px;
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
}
.problem-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.problem-card p {
  font-size: 14.5px;
  color: var(--ink-300);
  line-height: 1.5;
}

/* ============================================
   TRILHAS
   ============================================ */
.trilhas {
  background: linear-gradient(180deg, var(--white), var(--green-50));
}

.trilhas-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.trilha-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.trilha-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--green-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.trilha-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.trilha-card:hover::before { transform: scaleX(1); }

.trilha-card__num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trilha-card__num span {
  width: 28px; height: 28px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 800;
}
.trilha-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--green-700);
}
.trilha-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.trilha-card p {
  font-size: 14.5px;
  color: var(--ink-600);
  line-height: 1.5;
}
.trilha-card__meta {
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--ink-100);
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 600;
}
.trilha-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ============================================
   COMO FUNCIONA / VIDEO
   ============================================ */
.how {
  background: var(--white);
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink-900);
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
  cursor: pointer;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-thumb {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--white);
  transition: opacity 0.3s;
}
.video-thumb__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://i.ytimg.com/vi/ElNZrSgJR3w/maxresdefault.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.video-thumb__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6));
}
.video-thumb__play {
  width: 80px; height: 80px;
  background: var(--green-600);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 0 rgba(3, 152, 85, 0.6);
  position: relative;
  z-index: 2;
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0% { box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 0 rgba(3, 152, 85, 0.6); }
  100% { box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 30px rgba(3, 152, 85, 0); }
}
.video-thumb__play svg { transform: translateX(3px); }
.video-thumb__label {
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.video-thumb__caption {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 2;
  text-align: left;
}
.video-thumb__caption strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.video-thumb__caption small {
  font-size: 13px;
  opacity: 0.85;
}

.steps {
  display: grid;
  gap: 18px;
}
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step__n {
  width: 40px; height: 40px;
  background: var(--green-600);
  color: var(--white);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: var(--shadow-green);
}
.step h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink-900);
}
.step p {
  font-size: 15px;
  color: var(--ink-600);
}

/* ============================================
   COMPARATIVO
   ============================================ */
.compare {
  background: var(--ink-50);
}

.compare-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.compare-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 2px solid var(--ink-200);
}
.compare-card--us {
  border-color: var(--green-500);
  background: linear-gradient(180deg, var(--green-50), var(--white));
  position: relative;
}
.compare-card--us::after {
  content: "Recomendado";
  position: absolute;
  top: -12px; right: 20px;
  background: var(--green-600);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare-card h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-500);
  margin-bottom: 10px;
}
.compare-card--us h4 { color: var(--green-700); }

.compare-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.compare-card--us .compare-price { color: var(--green-700); }

.compare-price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-500);
  display: block;
  margin-top: -2px;
}

.compare-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.compare-list li {
  font-size: 14.5px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-700);
  list-style: none;
}
.compare-list .check { color: var(--green-600); flex-shrink: 0; margin-top: 2px; }
.compare-list .x { color: var(--ink-400); flex-shrink: 0; margin-top: 2px; }
.compare-list li.muted { color: var(--ink-500); }

/* ============================================
   DEPOIMENTOS
   ============================================ */
.testimonials {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  gap: 16px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s;
}
.testimonial:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
}

.testimonial__stars {
  color: var(--amber-500);
  font-size: 14px;
  letter-spacing: 2px;
}
.testimonial__quote {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-700);
  flex: 1;
  text-wrap: pretty;
}
.testimonial__quote strong { color: var(--green-700); font-weight: 600; background: var(--green-50); padding: 0 4px; border-radius: 3px; }
.testimonial__person {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--ink-100);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-300), var(--green-600));
  display: grid; place-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}
.testimonial__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-900);
}
.testimonial__meta {
  font-size: 12.5px;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial__meta .badge {
  background: var(--green-100);
  color: var(--green-700);
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 11px;
}

/* ============================================
   PRICING (oferta)
   ============================================ */
.pricing {
  background: linear-gradient(180deg, var(--ink-900), var(--ink-800));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(3, 152, 85, 0.2), transparent 70%);
  pointer-events: none;
}
.pricing .section-title { color: var(--white); }
.pricing .section-eyebrow { color: var(--green-400); }
.pricing .section-sub { color: var(--ink-300); }

.offer-card {
  background: var(--white);
  color: var(--ink-800);
  border-radius: 24px;
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(3, 152, 85, 0.3);
  max-width: 480px;
  margin: 0 auto;
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--green-400), var(--green-600), var(--green-400));
  border-radius: 24px;
  z-index: -1;
  opacity: 0.5;
}

.offer-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.offer-card__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.offer-card__tag {
  background: var(--red-500);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-card h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.offer-price {
  margin: 20px 0;
  padding: 20px;
  background: var(--green-50);
  border-radius: 14px;
  border: 1px dashed var(--green-300);
  text-align: center;
}
.offer-price__from {
  font-size: 14px;
  color: var(--ink-500);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.offer-price__main {
  font-size: 14px;
  color: var(--ink-600);
  margin-bottom: 4px;
  font-weight: 600;
}
.offer-price__big {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 6px 0;
  color: var(--green-700);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.offer-price__big .currency {
  font-size: 18px;
  font-weight: 700;
}
.offer-price__big .value {
  font-size: 56px;
  line-height: 1;
}
.offer-price__big .cents {
  font-size: 22px;
  font-weight: 700;
}
.offer-price__total {
  font-size: 13px;
  color: var(--ink-600);
  margin-top: 6px;
}

.offer-list {
  margin: 18px 0 22px;
  display: grid;
  gap: 10px;
}
.offer-list li {
  font-size: 14.5px;
  color: var(--ink-700);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  list-style: none;
}
.offer-list svg { color: var(--green-600); flex-shrink: 0; margin-top: 2px; }

.offer-card__guarantee {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--ink-50);
  padding: 12px 14px;
  border-radius: 12px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-600);
}
.offer-card__guarantee svg { color: var(--green-600); flex-shrink: 0; }
.offer-card__guarantee strong { color: var(--ink-900); display: block; font-size: 14px; margin-bottom: 1px; }

.offer-card__pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-500);
  flex-wrap: wrap;
}
.offer-card__pay strong { color: var(--ink-700); font-weight: 600; }

.scarcity {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  padding: 10px 14px;
  border-radius: 10px;
  margin-top: 12px;
  font-size: 13px;
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--white); }

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item[open] {
  background: var(--white);
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--green-600);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 20px 20px;
  font-size: 14.5px;
  color: var(--ink-600);
  line-height: 1.6;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final {
  background: linear-gradient(160deg, var(--green-600), var(--green-800));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08), transparent 40%);
  pointer-events: none;
}
.final h2 {
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
  text-wrap: balance;
}
.final p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 520px;
  margin-inline: auto;
  text-wrap: pretty;
}
.final .btn-primary {
  background: var(--white);
  color: var(--green-700);
  max-width: 380px;
  margin: 0 auto;
}
.final .btn-primary:hover {
  background: var(--ink-50);
  color: var(--green-800);
}
.final small {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink-900);
  color: var(--ink-400);
  padding: 36px 0 24px;
  font-size: 13px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-700);
}
.footer__top .logo { color: var(--white); }
.footer__top .logo__mark { background: var(--green-500); }
.footer__copy { line-height: 1.6; }
.footer__legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
}
.footer__legal a:hover { color: var(--green-400); }
.footer__bottom {
  font-size: 12px;
  color: var(--ink-500);
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--ink-200);
  padding: 12px 16px;
  z-index: 30;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__price {
  flex-shrink: 0;
}
.sticky-cta__price strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
}
.sticky-cta__price small {
  font-size: 11px;
  color: var(--ink-500);
}
.sticky-cta .btn-primary {
  flex: 1;
  padding: 14px 16px;
  font-size: 15px;
}

/* ============================================
   ANIMAÇÕES on scroll
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVO — TABLET / DESKTOP
   ============================================ */
@media (min-width: 720px) {
  :root { --section-py: 88px; }

  .hero {
    padding: 60px 0 80px;
  }
  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .hero__left { flex: 1; }
  .hero__right { flex: 0 0 380px; }
  .hero__cta-row { flex-direction: row; }
  .btn-primary { width: auto; }

  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .trilhas-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }

  .how__inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .how__inner .video-wrap { margin-bottom: 0; }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer__top {
    border-bottom: none;
    padding-bottom: 0;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    flex: 1;
  }

  /* Esconde sticky CTA no desktop */
  .sticky-cta { display: none; }
}

@media (min-width: 1024px) {
  .trilhas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trilhas-grid .trilha-card:nth-child(4),
  .trilhas-grid .trilha-card:nth-child(5) {
    /* mantêm 3 colunas; sobram 2 cards na última linha */
  }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
