/* ============================================================
   AgendaX — Landing de captura (estilo alto-impacto/conversão)
   Cores da marca reais + fontes Bebas Neue / Outfit
   ============================================================ */

:root {
  /* Marca */
  --green: #3fbb86;
  --green-600: #36a374;
  --green-700: #2d8560;
  --green-900: #1b4938;
  --blue: #465fff;

  /* Acentos de conversão */
  --yellow: #ffc94a;
  --yellow-600: #f0b429;
  --red: #f04438;

  /* Neutros */
  --ink: #101828;
  --gray: #667085;
  --line: #e4e7ec;
  --bg: #ffffff;
  --bg-soft: #f9fafb;
  --dark: #1a2231;

  --radius: 6px;
  --shadow: 0 2px 6px rgba(16, 24, 40, 0.12);
  --shadow-lg: 0 4px 14px rgba(16, 24, 40, 0.16);
  --container: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

/* Evita que imagens/colunas em grid forcem overflow horizontal (min-width:auto) */
.hero__inner > *,
.solution__inner > *,
.growth__inner > * { min-width: 0; }

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

/* ---------- Tipografia utilitária ---------- */
.section-title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.05;
  margin-bottom: 40px;
}
.section-title--left { text-align: left; }

.hl { color: var(--green); }

.badge {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 7px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.badge--yellow { background: var(--yellow); color: #3d2c00; }
.badge--green-soft { background: rgba(63, 187, 134, 0.15); color: var(--green-700); }

.stars { color: var(--yellow-600); letter-spacing: 2px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: filter 0.12s ease;
  line-height: 1.2;
}
.btn:hover { filter: brightness(1.05); }

.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-600); }
.btn--yellow { background: var(--yellow); color: #3d2c00; }
.btn--yellow:hover { background: var(--yellow-600); }

.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--xl { padding: 20px 34px; font-size: clamp(1rem, 2.4vw, 1.25rem); text-transform: uppercase; letter-spacing: 0.5px; }
.btn--block { display: block; width: 100%; }

/* ---------- Barra de topo ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.04);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}
.topbar__brand { display: flex; align-items: center; }
.topbar__logo { height: 38px; width: auto; }
.topbar__urgency {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar__urgency .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green);
}
.topbar__actions { display: flex; align-items: center; gap: 16px; }
.link-muted { color: var(--gray); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.link-muted:hover { color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  background: #e8f5ee;
  border-bottom: 4px solid var(--green);
  padding: clamp(40px, 7vw, 80px) 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
}
.hero__title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.hero__sub {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: #384250;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero__media { display: flex; justify-content: center; align-items: center; overflow: visible; }
.hero__photo {
  width: 132%;
  max-width: none;
  height: auto;
  max-height: 820px;
}

/* ---------- Dor ---------- */
.pain { padding: clamp(56px, 8vw, 96px) 0; background: var(--bg-soft); }
.pain__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.pain__media { display: flex; justify-content: center; }
.pain__media img { width: 100%; max-width: 520px; height: auto; }
.pain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.pain__item {
  background: #fff;
  border: 2px solid #fde2e0;
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 600;
  color: #7a271a;
  box-shadow: var(--shadow);
}
.pain__punch {
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin-top: 36px;
  font-weight: 700;
}
.pain__punch u { text-decoration-color: var(--red); }

/* ---------- Solução ---------- */
.solution { padding: clamp(56px, 8vw, 96px) 0; }
.solution__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.solution__media { display: flex; justify-content: center; }
.solution__person { width: 100%; max-width: 480px; height: auto; }
.solution__text { font-size: 1.15rem; color: #384250; margin-bottom: 24px; }
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-list li {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 600;
}

/* ---------- Benefícios ---------- */
.benefits { padding: clamp(56px, 8vw, 96px) 0; background: var(--green-900); color: #fff; }
.benefits .section-title { color: #fff; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}
.benefit-card {
  background: var(--green-700);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
}
.benefit-card__icon { font-size: 2.4rem; display: block; margin-bottom: 10px; }
.benefit-card h3 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  font-weight: 400;
}

/* ---------- Growth Score + Form ---------- */
.growth {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--green);
  color: #fff;
}
.growth__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.growth__title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.growth__text { font-size: 1.15rem; opacity: 0.95; margin-bottom: 22px; }
.growth__perks { list-style: none; display: grid; gap: 10px; font-weight: 600; font-size: 1.05rem; }

.form-card {
  background: #fff;
  color: var(--ink);
  border: 3px solid var(--green-900);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.form-card__title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.5px;
}
.form-card__sub { color: var(--gray); margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.field input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(63, 187, 134, 0.15);
}
.field input.invalid { border-color: var(--red); }
.form-error {
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.form-card__legal { font-size: 0.78rem; color: var(--gray); margin-top: 14px; text-align: center; }

.form-success { text-align: center; padding: 30px 10px; }
.form-success__check {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--gray); }

/* ---------- Transformação ---------- */
.transform { padding: clamp(56px, 8vw, 96px) 0; background: var(--bg-soft); }
.transform__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.transform__col { border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.transform__col ul { list-style: none; display: grid; gap: 12px; font-weight: 600; font-size: 1.05rem; }
.transform__col--before { background: #fff5f4; border: 2px solid #fecdca; color: #7a271a; }
.transform__col--after { background: #eafaf2; border: 2px solid #a7e8c8; color: var(--green-900); }
.transform__tag {
  display: inline-block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.transform__col--before .transform__tag { background: var(--red); color: #fff; }
.transform__col--after .transform__tag { background: var(--green); color: #fff; }
.transform__arrow { font-size: 2.4rem; color: var(--green); text-align: center; }

/* ---------- Prova social ---------- */
.social { padding: clamp(56px, 8vw, 96px) 0; }
.social__lead { text-align: center; max-width: 640px; margin: 0 auto 40px; font-size: 1.15rem; color: #384250; }
.social__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.testimonial .stars { font-size: 1.1rem; }
.testimonial p { margin: 12px 0; font-size: 1.05rem; }
.testimonial cite { color: var(--gray); font-style: normal; font-weight: 600; }

/* ---------- CTA final ---------- */
.final-cta {
  padding: clamp(64px, 9vw, 110px) 0;
  background: var(--green-900);
  color: #fff;
  text-align: center;
}
.final-cta__title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}
.final-cta__micro { margin-top: 16px; opacity: 0.9; font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #cbd5e1; padding: 40px 0; }
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer__logo { height: 34px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: #cbd5e1; text-decoration: none; font-weight: 600; }
.footer__links a:hover { color: #fff; }
.footer__copy { font-size: 0.85rem; opacity: 0.7; }

/* Sem animações de entrada — conteúdo sempre visível */
.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 900px) {
  .hero__inner,
  .solution__inner,
  .growth__inner,
  .pain__body { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__photo { max-height: 420px; }
  .solution__person { max-width: 340px; }
  .pain__media img { max-width: 420px; }
  .transform__grid { grid-template-columns: 1fr; }
  .transform__arrow { transform: rotate(90deg); }
}

@media (max-width: 640px) {
  .topbar__inner { justify-content: center; }
  .topbar__urgency { display: none; }
  .topbar__actions { display: none; }
  .feature-list { grid-template-columns: 1fr; }
  .hero__title { text-align: center; }
  .hero__copy .badge { display: block; width: fit-content; margin-inline: auto; text-align: center; }
  .hero__sub { text-align: center; }
}
