/* ============================================================
   Emitiva — shared landing styles
   Brand: navy #0B2545 · green #10B981 · Plus Jakarta Sans
   Mobile-first. Two-tone clean B2B.
   ============================================================ */

:root {
  --navy: #0B2545;
  --navy-700: #13315C;
  --navy-soft: #1B3A5C;
  --green: #10B981;
  --green-600: #0EA372;
  --green-700: #0C8A61;
  --blue: #1E5AC8;           /* Azul Apoio — botões/interface (guia de marca) */
  --blue-600: #1A50B4;
  --green-tint: #E8F8F1;
  --green-tint-2: #ECFDF5;
  --amber-tint: #FEF6E0;
  --amber-line: #E8C97A;

  --ink: #0B2545;            /* strong text */
  --body: #41566B;           /* body text */
  --muted: #7A8AA0;          /* captions / metadata */
  --line: #E4EAF1;           /* hairline borders */
  --line-strong: #D3DCE8;

  --bg: #FFFFFF;
  --bg-soft: #F5F8FB;        /* breathing sections */

  --wrap: 1120px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 2px rgba(11,37,69,.04), 0 8px 24px rgba(11,37,69,.06);
  --shadow-price: 0 2px 4px rgba(11,37,69,.05), 0 20px 50px rgba(11,37,69,.12);

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 800;
  text-wrap: balance;
}

p { margin: 0; }

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: 22px;
}

.section { padding-block: 64px; }
.section--soft { background: var(--bg-soft); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* ---------- logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.logo svg { display: block; width: 28px; height: 28px; }
.logo__img { display: block; height: 30px; width: auto; }
.foot .logo__img { height: 27px; }
.logo__word {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.03em;
  color: var(--navy);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease-out, background .15s ease-out, box-shadow .15s ease-out, color .15s ease-out;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 1px 2px rgba(30,90,200,.25), 0 8px 20px rgba(30,90,200,.22);
}
.btn--primary:hover { background: var(--blue-600); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--navy); }

.btn--invert {
  background: #fff;
  color: var(--navy);
}
.btn--invert:hover { background: #EAF1FA; }

.btn--sm { padding: 11px 18px; font-size: 15px; }
.btn--block { width: 100%; }

/* header CTA mostra rótulo curto no mobile pra não colidir com a logo */
.btn__short { display: none; }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 16px;
}

/* ---------- badge / selo with blinking dot ---------- */
.selo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #EAF0F8;
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 15px 8px 13px;
  border-radius: var(--radius-pill);
  letter-spacing: -0.005em;
}
.selo__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
  box-shadow: 0 0 0 0 rgba(16,185,129,.55);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
@media (prefers-reduced-motion: reduce) {
  .selo__dot { animation: none; }
}

/* ---------- hero ---------- */
.hero { padding-block: 52px 60px; }
.hero__inner { display: grid; gap: 30px; }
.hero h1 {
  font-size: clamp(33px, 7.6vw, 56px);
  letter-spacing: -0.03em;
}
.hero__sub {
  font-size: clamp(17px, 4.2vw, 20px);
  color: var(--body);
  max-width: 620px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__cta .btn { flex: 1 1 auto; min-width: 0; }
.trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  color: var(--body);
  font-size: 15px;
  font-weight: 500;
}
.trust span { display: inline-flex; align-items: center; gap: 9px; }
.check {
  flex: none;
  width: 18px; height: 18px;
}

/* ---------- highlight strip ---------- */
.strip {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}
.strip .wrap {
  padding-block: 26px;
}
.strip p {
  font-size: clamp(17px, 3.4vw, 20px);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.strip--amber {
  background: var(--amber-tint);
  border-block-color: var(--amber-line);
}
.strip--amber p { font-weight: 500; color: var(--navy); }

/* ---------- section header ---------- */
.shead { max-width: 720px; margin-bottom: 40px; }
.shead--center { margin-inline: auto; text-align: center; }
.shead h2 {
  font-size: clamp(27px, 5.6vw, 40px);
}
.shead p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--body);
}

/* ---------- benefit cards ---------- */
.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.card__ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--green-tint);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card__ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 19px; letter-spacing: -0.015em; margin-bottom: 10px; }
.card p { font-size: 15.5px; color: var(--body); }

/* ---------- steps ---------- */
.steps {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
.step { display: flex; gap: 18px; align-items: flex-start; }
.step__num {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  display: grid; place-items: center;
  letter-spacing: -0.02em;
}
.step h3 { font-size: 18px; margin-bottom: 7px; letter-spacing: -0.015em; }
.step p { font-size: 15.5px; color: var(--body); }
.step--mark .step__num { background: var(--green); }
.step--mark {
  border: 1.5px solid var(--green);
  background: var(--green-tint-2);
  border-radius: var(--radius);
  padding: 22px;
}

/* ---------- stats ---------- */
.stats {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  text-align: center;
}
.stat__num {
  font-family: var(--font);
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(38px, 9vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat__label {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 500;
  max-width: 280px;
  margin-inline: auto;
}

/* ---------- price card ---------- */
.price {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-price);
  padding: 36px 30px 30px;
  text-align: center;
}
.price__badge {
  display: inline-block;
  background: var(--green-tint);
  color: var(--green-700);
  font-weight: 700;
  font-size: 13.5px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
}
.price h3 { font-size: 26px; margin-top: 18px; }
.price__value {
  margin-top: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  font-size: clamp(30px, 8vw, 38px);
}
.price__value small {
  font-size: 17px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}
.price__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  text-align: left;
}
.price__list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.price__list .check { margin-top: 2px; }
.price .btn { margin-top: 26px; }
.price__note {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--muted);
}

/* ---------- comparativo table ---------- */
.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare th, .compare td {
  padding: 15px 14px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}
.compare thead th {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  background: #fff;
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare .col-row { font-weight: 600; color: var(--ink); }
.compare .col-nat { color: var(--muted); }
.compare .col-emi {
  background: var(--green-tint-2);
  color: var(--ink);
  font-weight: 600;
}
.compare thead .col-emi { color: var(--green-700); }
.compare .col-emi.is-head {
  border-top: 2px solid var(--green);
}
.compare .cell-yes { display: inline-flex; align-items: center; gap: 7px; }
.compare .dash { color: var(--line-strong); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 0; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-weight: 700;
  font-size: 17.5px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__sign {
  flex: none;
  position: relative;
  width: 20px; height: 20px;
}
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  background: var(--green);
  border-radius: 2px;
  transition: transform .2s ease-out, opacity .2s ease-out;
}
.faq__sign::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq__sign::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq__item[open] .faq__sign::after { transform: rotate(90deg); opacity: 0; }
.faq__answer {
  padding: 0 4px 24px;
  font-size: 16px;
  color: var(--body);
  max-width: 660px;
}

/* ---------- final CTA ---------- */
.final {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-700) 48%, var(--green-700) 130%);
  color: #fff;
  text-align: center;
}
.final .wrap { padding-block: 76px; }
.final h2 {
  color: #fff;
  font-size: clamp(28px, 6vw, 44px);
  max-width: 760px;
  margin: 0 auto;
}
.final p {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  margin: 18px auto 30px;
  max-width: 560px;
}
.final .btn--invert {
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

/* ---------- footer ---------- */
.foot {
  background: var(--navy);
  color: rgba(242,246,251,.6);
  font-size: 14px;
}
.foot .wrap {
  padding-block: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  justify-content: space-between;
}
.foot .logo__word { color: #fff; }
.foot__legal {
  color: rgba(242,246,251,.55);
  display: grid;
  gap: 3px;
}
.foot__legal p { margin: 0; line-height: 1.5; }

/* ---------- hero product mock ---------- */
.mock {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 18px;
  max-width: 440px;
}
.mock__bar {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.mock__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.mock__tab {
  margin-left: auto;
  font-size: 12.5px; font-weight: 600; color: var(--muted);
}
.mock__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 12px 0;
}
.mock__row + .mock__row { border-top: 1px solid var(--line); }
.mock__co { display: flex; align-items: center; gap: 11px; }
.mock__logo {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px; letter-spacing: -0.02em;
}
.mock__logo.alt { background: #E2A33B; }
.mock__logo.alt2 { background: var(--green-700); }
.mock__name { font-weight: 700; color: var(--ink); font-size: 15px; }
.mock__meta { font-size: 12.5px; color: var(--muted); }
.mock__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700;
  color: var(--green-700);
  background: var(--green-tint);
  padding: 5px 10px; border-radius: var(--radius-pill);
  white-space: nowrap;
}
.mock__status.is-wait { color: #B07A12; background: var(--amber-tint); }
.mock__status .check { width: 13px; height: 13px; }
.mock__head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 4px;
}
.mock__big {
  font-size: 19px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em;
}
.mock__pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; color: var(--navy);
  background: #EAF0F8; padding: 5px 11px; border-radius: var(--radius-pill);
}
.mock__float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 13px 16px;
  display: flex; align-items: center; gap: 11px;
  font-weight: 700; color: var(--ink); font-size: 14px;
}
.mock__float--br { right: -14px; bottom: -18px; }
.mock__check-badge {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--green); display: grid; place-items: center; flex: none;
}
.mock__check-badge svg { width: 16px; height: 16px; }
@media (max-width: 519px) {
  .mock { max-width: none; }
  .mock__float--br { right: 6px; }
  /* header: encurta o CTA e dá folga pra não encostar/cortar na logo */
  .site-header .btn--sm { padding: 9px 14px; font-size: 14px; }
  .site-header .btn__full { display: none; }
  .site-header .btn__short { display: inline; }
}

/* ---------- enter animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(10px); }
  .reveal.in { opacity: 1; transform: none; transition: opacity .5s ease-out, transform .5s cubic-bezier(0.16,1,0.3,1); }
}

/* ============================================================
   Tablet / desktop
   ============================================================ */
@media (min-width: 720px) {
  body { font-size: 18px; }
  .section { padding-block: 88px; }

  .hero { padding-block: 72px 80px; }
  .hero__cta { gap: 14px; }
  .hero__cta .btn { flex: 0 0 auto; }
  .trust { flex-direction: row; flex-wrap: wrap; gap: 10px 26px; }

  .cards { grid-template-columns: repeat(3, 1fr); gap: 22px; }

  .steps { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .step { flex-direction: column; gap: 16px; }
  .step--mark { margin: 0; }

  .stats { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .foot__legal { text-align: right; }
}

@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
  }
  .hero__art { align-self: stretch; }
}
