:root {
  --green-dark: #0B3B2E;
  --green-pale: #E6EFE9;
  --green-bright: #7ED957;
  --green-bright-ink: #2f7d1f;
  --paper: #FAFAF8;
  --ink: #0B3B2E;
  --muted: #4A5551;
  --line: #dfe7e0;
  --shadow: 0 1px 2px rgba(11, 59, 46, .04), 0 12px 32px rgba(11, 59, 46, .06);
  --radius: 16px;
  --maxw: 760px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

p { color: var(--muted); margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); font-weight: 700; }

a { color: var(--green-bright-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 248, .85);
  backdrop-filter: saturate(1.1) blur(6px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo-link { display: block; line-height: 0; }
.logo { height: 40px; width: auto; display: block; }

/* Intro */
.intro { padding: 72px 0 8px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--green-bright-ink);
  margin: 0 0 14px;
}
h1 {
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 32px;
}

/* Ficha destacada */
.ficha {
  background: var(--green-dark);
  color: #eaf3ec;
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow);
}
.ficha-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.ficha-row:first-child { padding-top: 0; }
.ficha-row:last-child { padding-bottom: 0; border-bottom: 0; }
.ficha-label {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .7rem;
  font-weight: 700;
  color: var(--green-bright);
  padding-top: 3px;
}
.ficha-value { color: #f4f9f5; font-weight: 500; }
.pill {
  display: inline-block;
  background: var(--green-bright);
  color: var(--green-dark);
  font-weight: 700;
  font-size: .82rem;
  padding: 4px 12px;
  border-radius: 999px;
}

/* Bloques numerados */
.block { padding: 44px 0; border-top: 1px solid var(--line); }
.block:first-of-type { border-top: 0; }
.block-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.num {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1.5px solid var(--green-bright);
  font-weight: 800;
  font-size: 1.1rem;
}
h2 {
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -.01em;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

/* Listas de proceso */
.steps { list-style: none; margin: 0; padding: 0; }
.steps li {
  position: relative;
  padding: 0 0 14px 24px;
  color: var(--muted);
}
.steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-bright);
}
.steps-tail { margin-top: 22px; }

/* Tablas */
.table-scroll { overflow-x: auto; margin: 8px 0 4px; }
.tbl {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: .96rem;
}
.tbl thead th {
  background: var(--green-dark);
  color: #fff;
  text-align: left;
  font-weight: 700;
  letter-spacing: .01em;
  padding: 14px 18px;
}
.tbl td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  vertical-align: top;
}
.tbl tbody tr:nth-child(even) { background: var(--green-pale); }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl tbody td:first-child { color: var(--ink); font-weight: 600; }

/* Seccion honorarios resaltada */
.highlight {
  background: var(--green-pale);
  border-radius: 22px;
  padding: 40px 32px;
  border-top: 0;
  margin: 44px 0;
}
.tbl-fees { font-size: 1rem; }
.amount {
  color: var(--green-dark);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.tbl-fees tbody td:first-child { white-space: nowrap; }

/* CTA */
.cta {
  text-align: center;
  padding: 60px 0 24px;
  border-top: 1px solid var(--line);
}
.cta h2 { margin-bottom: 10px; }
.cta p { margin-bottom: 24px; }
.btn {
  display: inline-block;
  background: var(--green-bright);
  color: var(--green-dark);
  font-weight: 800;
  letter-spacing: .01em;
  padding: 15px 34px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(126, 217, 87, .35);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(126, 217, 87, .45);
}

/* Footer */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: var(--green-dark);
  color: #cfe0d5;
}
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.foot-logo-link {
  display: inline-block;
  line-height: 0;
  background: var(--paper);
  padding: 14px 20px;
  border-radius: 12px;
}
.foot-logo { height: 34px; width: auto; display: block; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .intro { padding-top: 48px; }
  .ficha { padding: 22px; }
  .ficha-row { grid-template-columns: 1fr; gap: 4px; }
  .ficha-label { padding-top: 0; }
  .highlight { padding: 28px 20px; }
  .num { width: 38px; height: 38px; font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
