/* ============================================================
   IGOR IGLESIAS — Landing PME
   Mobile-first · Dark · Apple semantic
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  /* surfaces */
  --bg:               #000;
  --surface-1:        #1c1c1e;
  --surface-2:        #2c2c2e;
  --surface-3:        #3a3a3c;
  --surface-alt:      #0a0a0c;

  /* separators */
  --separator:        rgba(255, 255, 255, 0.10);
  --separator-strong: rgba(255, 255, 255, 0.18);

  /* text */
  --text:             #f5f5f7;
  --text-2:           #aeaeb2;
  --text-3:           #8e8e93;
  --text-disabled:    #48484a;

  /* accents */
  --blue:             #0a84ff;
  --blue-hover:       #409cff;
  --blue-soft:        rgba(10, 132, 255, 0.16);
  --green:            #30d158;
  --green-soft:       rgba(48, 209, 88, 0.16);
  --orange:           #ff9f0a;
  --orange-soft:      rgba(255, 159, 10, 0.18);
  --red:              #ff453a;
  --red-soft:         rgba(255, 69, 58, 0.16);

  /* radii */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-pill: 980px;

  /* fonts */
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;

  /* layout */
  --container:        1140px;
  --container-narrow: 760px;
  --gutter:           clamp(1rem, 3.5vw, 2rem);

  /* easings */
  --ease:             cubic-bezier(0.2, 0, 0, 1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "calt", "ss01";
  overflow-x: hidden;
}

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

ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: var(--blue); text-decoration: none; transition: color 150ms var(--ease); }
a:hover { color: var(--blue-hover); }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--blue); color: #fff; }

/* ---------- 3. ACCESSIBILITY ---------- */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100px; left: 0;
  background: var(--blue);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
  z-index: 1000;
  transition: top 120ms var(--ease);
}
.skip-link:focus, .skip-link:focus-visible { top: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0ms !important;
    transition-duration: 0ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 4. TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  margin: 0 0 1rem;
  color: var(--text);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.3;
}

h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.6rem;
}

.kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.eyebrow {
  display: inline-block;
  color: var(--text-3);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.deck {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 60ch;
  font-weight: 400;
  letter-spacing: -0.014em;
  margin: 1.1rem 0 0;
  text-wrap: pretty;
}

.muted { color: var(--text-2); font-size: 0.97rem; }

.lead { font-size: 1.18rem; line-height: 1.55; color: var(--text); margin-bottom: 1.1rem; }

.accent {
  background: linear-gradient(135deg, #0a84ff, #5e5ce6 60%, #64d2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

strong { color: var(--text); font-weight: 600; }

/* ---------- 5. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow { max-width: var(--container-narrow); }

.section {
  padding: 4rem 0;
  position: relative;
}
@media (min-width: 768px) { .section { padding: 5.5rem 0; } }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }

.section-alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-alt) 50%, var(--bg) 100%);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head .deck { margin-left: auto; margin-right: auto; }

/* ---------- 6. HEADER ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid var(--separator);
}

header.site .bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 60px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.012em;
}
.brand:hover { color: var(--text); }

.brand-mark {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    background: linear-gradient(135deg, #0a84ff, #5e5ce6);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: -0.02em;
}
.brand-text { font-size: 0.98rem; }
@media (max-width: 480px) {
  .brand-text { display: none; }
}

.nav-primary { display: none; }
@media (min-width: 900px) {
  .nav-primary { display: block; }
  .nav-primary ul {
    display: flex;
    gap: 0.25rem;
  }
  .nav-primary a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.5rem 0.95rem;
    color: var(--text-2);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: var(--r-pill);
    transition: color 150ms var(--ease), background 150ms var(--ease);
  }
  .nav-primary a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.06);
  }
}

/* ---------- 7. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.4rem;
  min-height: 44px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.008em;
  border-radius: var(--r-pill);
  border: none;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: background 150ms var(--ease), transform 120ms var(--ease), box-shadow 150ms var(--ease);
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 6px 18px rgba(10,132,255,0.28);
}
.btn:hover { background: var(--blue-hover); color: #fff; }
.btn:active { transform: translateY(1px); }

.btn-sm { padding: 0.7rem 1.1rem; font-size: 0.88rem; min-height: 44px; }

.btn-lg { padding: 0.95rem 1.7rem; font-size: 1rem; min-height: 52px; }

.btn-xl {
  padding: 1.15rem 2.1rem;
  font-size: 1.1rem;
  min-height: 60px;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 10px 32px rgba(10,132,255,0.40);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: 0 0 0 1px var(--separator) inset;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

/* ---------- 8. HERO ---------- */
.hero {
  padding: 3rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.hero:hover { transform: none; border-color: transparent; }
@media (min-width: 768px) { .hero { padding: 5rem 0 5rem; } }
@media (min-width: 1024px) { .hero { padding: 6rem 0 6.5rem; } }

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  max-width: 130vw;
  background: radial-gradient(ellipse at center,
    rgba(10,132,255,0.18) 0%,
    rgba(94,92,230,0.08) 35%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero > .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.55fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }
}

.hero h1 br { display: none; }
@media (min-width: 600px) { .hero h1 br { display: inline; } }

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pills {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--separator);
  font-size: 0.82rem;
  color: var(--text-2);
  font-weight: 500;
}
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

/* hero side card */
.card-feature {
  background: linear-gradient(180deg, rgba(10,132,255,0.10), rgba(10,132,255,0.02));
  border: 1px solid rgba(10,132,255,0.30);
  border-radius: var(--r-xl);
  padding: 1.6rem;
  position: relative;
}
.card-feature header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.card-feature .eyebrow { margin: 0; color: var(--text-2); }

.check-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: var(--text);
}
.check-list .ck {
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 1px;
}

/* ---------- 8b. BYLINE (E-E-A-T) ---------- */
.byline {
  margin-top: 3rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--separator);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.88rem;
}
@media (min-width: 720px) {
  .byline {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}
.byline-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--text-2);
}
.byline-by { color: var(--text-3); font-size: 0.82rem; }
.byline-author {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 600;
  min-height: 32px;
}
.byline-author:hover { color: var(--blue); }
.byline-author strong { color: inherit; font-weight: 600; }
.byline-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 7px;
  background: linear-gradient(135deg, #0a84ff, #5e5ce6);
  color: #fff;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: -0.02em;
}
.byline-sep { color: var(--text-3); }
.byline-role { color: var(--text-2); font-size: 0.85rem; }
.byline-dates {
  color: var(--text-3);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}

/* ---------- 9. CARDS / GRID ---------- */
.grid { display: grid; gap: 1rem; }
.grid-cards {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid-cards { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
}
@media (min-width: 1024px) {
  .grid-cards { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

article {
  background: var(--surface-1);
  border: 1px solid var(--separator);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.5rem;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease), background 200ms var(--ease);
}
article:hover {
  border-color: var(--separator-strong);
  transform: translateY(-2px);
}
article > header {
  margin-bottom: 0.7rem;
}
article > header h3 { margin: 0; }

/* ---------- 10. NOTICE ---------- */
.notice {
  margin-top: 2.5rem;
  background: var(--blue-soft);
  border: 1px solid rgba(10,132,255,0.25);
  border-radius: var(--r-md);
  padding: 1.2rem 1.4rem;
  font-size: 1rem;
  line-height: 1.55;
}
.notice-warn {
  background: var(--orange-soft);
  border-color: rgba(255,159,10,0.35);
}

/* ---------- 10b. MARKET CONTEXT (stats com fontes) ---------- */
.market-context {
  margin-top: 3rem;
  padding: 2rem 0 0;
}
.market-context > header {
  text-align: center;
  margin-bottom: 1.8rem;
}
.market-context h3 {
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--text);
}
.market-context > header .eyebrow { margin-bottom: 0.5rem; }

.grid-stats {
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) {
  .grid-stats { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
}

article.stat {
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: linear-gradient(180deg, rgba(10,132,255,0.06), rgba(10,132,255,0.01));
  border-color: rgba(10,132,255,0.20);
}
.stat-value {
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 5vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
}
.stat-unit {
  font-size: 0.42em;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0;
}
.stat-label {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-2);
  margin: 0;
  flex: 1;
}
.stat-source {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0.35rem 0;
  min-height: 32px;
  align-self: flex-start;
}
.stat-source:hover { color: var(--blue); }

.market-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.92rem;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}
.market-note a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 0.3rem;
  color: var(--text-3);
}
.market-note a:hover { color: var(--blue); }

/* ---------- 11. COMPARISON TABLE ---------- */
.comparison-title {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 1.2rem;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--text);
}
.comparison-title span { color: var(--text-3); font-weight: 400; margin: 0 0.3rem; }

.table-scroll {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--separator);
  background: var(--surface-1);
  -webkit-overflow-scrolling: touch;
}

table.comparison {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.94rem;
}

table.comparison thead th {
  text-align: left;
  padding: 1rem 1rem;
  color: var(--text-3);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--separator);
  background: rgba(255,255,255,0.02);
}

table.comparison tbody th {
  text-align: left;
  font-weight: 600;
  padding: 1rem 1rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: top;
}

table.comparison tbody td {
  padding: 1rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-2);
  vertical-align: top;
  line-height: 1.45;
}
table.comparison tbody tr:last-child th,
table.comparison tbody tr:last-child td { border-bottom: none; }

table.comparison td.bad::before,
table.comparison td.good::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 0.55rem;
  vertical-align: middle;
  transform: translateY(-1px);
}
table.comparison td.bad::before  { background: var(--red); box-shadow: 0 0 6px var(--red-soft); }
table.comparison td.good::before { background: var(--green); box-shadow: 0 0 6px var(--green-soft); }
table.comparison td.good { color: var(--text); }

/* ---------- 12. SOLUÇÃO ---------- */
.solucao-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .solucao-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

article.frente {
  padding: 2rem 1.75rem 1.75rem;
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) { article.frente { padding: 2.5rem 2rem 2rem; } }

article.frente.featured {
  background: linear-gradient(180deg, rgba(10,132,255,0.10), rgba(10,132,255,0.02));
  border-color: rgba(10,132,255,0.30);
}

article.frente > header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--separator);
}

.frente-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
article.frente.featured .frente-num {
  background: var(--blue);
  color: #fff;
}

article.frente h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  margin: 0 0 0.35rem;
}

.frente-sub {
  color: var(--text-2);
  font-size: 0.98rem;
  margin: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  flex: 1;
}
.feature-list li {
  position: relative;
  padding-left: 1.4rem;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
article.frente:not(.featured) .feature-list li::before {
  background: var(--text-3);
}
.feature-list h4 {
  color: var(--text);
  text-transform: none;
  letter-spacing: -0.012em;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}
.feature-list .muted { font-size: 0.93rem; }

article.frente > footer {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--separator);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.solucao-cta {
  margin-top: 2.5rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--text-2);
  font-size: 1.05rem;
}

/* ---------- 13. BADGES ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3em 0.85em;
  border-radius: var(--r-pill);
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.4;
  letter-spacing: 0;
}
.badge-info    { background: var(--blue-soft); color: var(--blue); }
.badge-neutral { background: rgba(255,255,255,0.08); color: var(--text-2); }
.badge-success { background: var(--green-soft); color: var(--green); }
.badge-warn    { background: var(--orange-soft); color: var(--orange); }

/* ---------- 14. AUTORIDADE ---------- */
.autoridade-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .autoridade-grid { grid-template-columns: 1.4fr 1fr; gap: 3.5rem; }
}

.autoridade-text p { margin-bottom: 1.2rem; }

.autoridade-links {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.timeline {
  background: var(--surface-1);
  border: 1px solid var(--separator);
  border-radius: var(--r-lg);
  padding: 1.6rem;
}
.timeline-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 1.2rem;
}
.timeline ol {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
}
.timeline li {
  position: relative;
  padding-left: 1.5rem;
  border-left: 1px solid var(--separator);
  padding-bottom: 0.2rem;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.55rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--bg);
}
.timeline-year {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}
.timeline strong {
  display: block;
  font-size: 0.96rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.timeline .muted { font-size: 0.86rem; }

/* ---------- 15. STEPS ---------- */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: stepc;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

.steps > li {
  background: var(--surface-1);
  border: 1px solid var(--separator);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.6rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: border-color 200ms var(--ease);
}
.steps > li:hover { border-color: var(--separator-strong); }

.step-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue);
  background: var(--blue-soft);
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.step-body { flex: 1; min-width: 0; }
.step-body header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.step-body h3 {
  margin: 0;
  font-size: 1.1rem;
}
.step-body p { font-size: 0.96rem; color: var(--text-2); margin: 0; line-height: 1.55; }
.step-body p strong { color: var(--text); }

/* ---------- 16. FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

details {
  background: var(--surface-1);
  border: 1px solid var(--separator);
  border-radius: var(--r-md);
  padding: 0 1.3rem;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
details[open] {
  border-color: var(--separator-strong);
  background: var(--surface-1);
}
details > summary {
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  letter-spacing: -0.012em;
  min-height: 44px;
}
details > summary::-webkit-details-marker,
details > summary::marker { display: none; content: ""; }
details > summary::after {
  content: "+";
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 200ms var(--ease);
}
details[open] > summary::after { transform: rotate(45deg); }

.faq-body {
  padding: 0 0 1.2rem;
  border-top: 1px solid var(--separator);
  padding-top: 1rem;
  color: var(--text-2);
  font-size: 0.97rem;
  line-height: 1.6;
}
.faq-body p { margin-bottom: 0.7rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* ---------- 17. CTA FINAL ---------- */
.cta-final {
  padding: 4.5rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .cta-final { padding: 6rem 0 7rem; } }

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top,
    rgba(10,132,255,0.18) 0%,
    rgba(94,92,230,0.06) 40%,
    transparent 70%);
  pointer-events: none;
}
.cta-final > .container { position: relative; }

.cta-final h2 {
  text-wrap: balance;
  margin: 0.7rem 0 1.2rem;
}
.cta-final h2 br { display: none; }
@media (min-width: 700px) { .cta-final h2 br { display: inline; } }

.cta-final .deck {
  margin: 0 auto 2.5rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.guarantees {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-2);
  font-size: 0.95rem;
}
@media (min-width: 720px) {
  .guarantees { flex-direction: row; justify-content: center; gap: 2rem; }
}
.guarantees li { display: inline-flex; align-items: center; gap: 0.5rem; }
.guarantees span { color: var(--green); font-weight: 700; }

/* ---------- 18. FOOTER ---------- */

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
}

footer.site h4 {
  color: var(--text-2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
footer.site .footer-mark {
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.012em;
  margin-bottom: 0.5rem;
}

.footer-list { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-list a {
  color: var(--text-2);
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.3rem 0;
}
.footer-list a:hover { color: var(--text); }

footer.site .disclaimer {
  display: block;
  max-width: 64ch;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-3);
}

/* ---------- 19. WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: clamp(1rem, 3vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
  z-index: 90;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.2rem 0.85rem 1rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 1px rgba(255,255,255,0.1) inset;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
  min-height: 52px;
}
.wa-float:hover {
  background: #1fbe5b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55), 0 0 0 1px rgba(255,255,255,0.15) inset;
}
.wa-float:active { transform: translateY(0); }
.wa-float svg { flex-shrink: 0; }
@media (max-width: 540px) {
  .wa-float-label { display: none; }
  .wa-float { padding: 0.85rem; }
}

/* ---------- 20. ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 600ms var(--ease) both;
}
.fade-up.in-view { opacity: 1; }

/* fallback for no-JS: visible immediately */
.no-js .fade-up { opacity: 1; animation: none; }
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.footer-name {
    margin: 0;
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.018em;
}
.footer-role {
    margin: 0;
    font-size: 0.84rem;
    color: var(--text-3);
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.5rem;
    font-size: 0.9rem;
}
.footer-nav a {
    color: var(--text-2);
    font-weight: 500;
    min-height: 44px;
    padding: 0.25rem 0;
    display: inline-flex;
    align-items: center;
}
.footer-nav a:hover { color: var(--text); }
footer.site {
    border-top: 1px solid var(--separator);
    margin-top: 4rem;
    padding: 2.5rem var(--gutter);
    color: var(--text-3);
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}
@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
