/* =========================================
   PORCIFINANZAS — LANDING PAGE
   styles.css
   ========================================= */

/* VARIABLES */
:root {
  --azul:        #1e40af;
  --azul-med:    #2563eb;
  --azul-claro:  #3b82f6;
  --azul-pale:   #dbeafe;
  --verde:       #16a34a;
  --verde-med:   #15803d;
  --verde-pale:  #dcfce7;
  --crema:       #f8fafc;
  --carbon:      #0f172a;
  --carbon-med:  #1e293b;
  --gris:        #64748b;
  --gris-pale:   #f1f5f9;
  --borde:       #e2e8f0;
  --blanco:      #ffffff;
  --rojo:        #dc2626;
  --rojo-pale:   #fee2e2;
  --font-display: 'Fraunces', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--crema);
  color: var(--carbon);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
}
a { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* UTILIDADES */
.section-inner  { max-width: 860px; margin: 0 auto; }
.section-label  { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--azul-claro); margin-bottom: 10px; display: block; }
.section-label.light { color: #93c5fd; }
.section-title  { font-size: clamp(26px, 3.2vw, 38px); color: var(--carbon); margin-bottom: 14px; }
.section-title.light { color: #ffffff; }
.section-sub    { font-size: 16px; color: var(--gris); max-width: 560px; line-height: 1.65; }
.section-sub.light { color: rgba(255,255,255,.5); }

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
  background: var(--azul);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  letter-spacing: -.3px;
}
.nav-logo span { color: #93c5fd; font-weight: 300; }
.nav-cta {
  background: #fff;
  color: var(--azul);
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover { opacity: .88; }
.nav-cta .ti { font-size: 15px; }

/* =========================================
   HERO
   ========================================= */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 60%, #1d4ed8 100%);
  padding: 88px 40px 104px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  pointer-events: none;
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 18px;
  display: block;
}
.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.06;
}
.hero h1 em { font-style: italic; color: #bfdbfe; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 14px;
  line-height: 1.65;
}
.hero-credencial {
  font-size: 14px;
  color: var(--gris);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--verde);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.hero-cta:hover { background: var(--verde-med); transform: translateY(-1px); }
.hero-cta .ti { font-size: 19px; }
.hero-nota {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,.38);
  display: block;
}

/* =========================================
   SECCIONES GENERALES
   ========================================= */
section { padding: 72px 40px; }

/* =========================================
   PROBLEMA
   ========================================= */
.problema { background: var(--blanco); }
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 10px;
  margin-top: 32px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 16px;
  background: var(--crema);
  border-radius: 8px;
  border: 1px solid var(--borde);
}
.check-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--rojo-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon .ti { font-size: 13px; color: var(--rojo); }
.check-text { font-size: 14px; color: var(--carbon-med); line-height: 1.45; }

/* =========================================
   ANTES / DESPUÉS
   ========================================= */
.antesdespues { background: var(--gris-pale); }
.ad-wrap {
  margin-top: 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--borde);
}
.ad-headers { display: grid; grid-template-columns: 1fr 1fr; }
.ad-header {
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}
.ad-header.antes  { background: var(--rojo-pale);  color: var(--rojo);  }
.ad-header.despues { background: var(--verde-pale); color: var(--verde); border-left: 1px solid var(--borde); }
.ad-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--borde); }
.ad-cell { padding: 13px 18px; font-size: 14px; line-height: 1.45; background: var(--blanco); }
.ad-cell.antes  { color: var(--gris); border-right: 1px solid var(--borde); }
.ad-cell.antes::before  { content: '✗  '; color: var(--rojo); }
.ad-cell.despues { color: var(--carbon-med); font-weight: 500; }
.ad-cell.despues::before { content: '✓  '; color: var(--verde); }

@media (max-width: 600px) {
  .ad-headers {
    grid-template-columns: 1fr;
  }
  .ad-header.despues {
    border-left: none;
    border-top: 1px solid var(--borde);
  }
  .ad-row {
    grid-template-columns: 1fr;
  }
  .ad-cell.antes {
    border-right: none;
    border-bottom: 1px solid var(--borde);
  }
}

/* =========================================
   CALCULADORA
   ========================================= */
.calculadora { background: var(--azul); }
.calc-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 38px);
  color: #fff;
  margin-bottom: 8px;
}
.calc-sub {
  font-size: 15px;
  color: rgba(255,255,255,.62);
  margin-bottom: 36px;
}
.calc-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.input-group { margin-bottom: 20px; }
.input-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  margin-bottom: 7px;
  display: block;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.calc-input {
  width: 100%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  padding: 12px 15px;
  font-family: var(--font-body);
  font-size: 18px;
  color: #fff;
  outline: none;
  transition: border-color .2s, background .2s;
}
.calc-input::placeholder { color: rgba(255,255,255,.3); font-size: 15px; }
.calc-input:focus {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.18);
}
.calc-btn {
  width: 100%;
  background: var(--verde);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.calc-btn:hover { background: var(--verde-med); }
.calc-btn .ti { font-size: 17px; }
.calc-results { display: none; }
.calc-results.visible { display: block; }
.results-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  gap: 8px;
}
.result-row:last-of-type { border-bottom: none; }
.result-left { flex: 1; }
.result-label  { font-size: 13px; color: rgba(255,255,255,.65); display: block; line-height: 1.3; }
.result-note   { font-size: 10px; color: rgba(255,255,255,.32); display: block; margin-top: 2px; }
.result-value  { font-family: var(--font-display); font-size: 19px; color: #fff; font-weight: 500; text-align: right; flex-shrink: 0; }
.result-value.highlight { color: #86efac; font-size: 22px; }
.calc-impacto {
  margin-top: 18px;
  background: rgba(22,163,74,.18);
  border: 1px solid rgba(22,163,74,.32);
  border-radius: 10px;
  padding: 16px;
}
.impacto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #86efac;
  margin-bottom: 4px;
  display: block;
}
.impacto-num {
  font-family: var(--font-display);
  font-size: 30px;
  color: #fff;
  font-weight: 500;
}
.impacto-sub {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 3px;
  line-height: 1.4;
  display: block;
}
.calc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--verde);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  text-align: center;
  transition: background .2s;
}
.calc-cta:hover { background: var(--verde-med); }
.calc-cta .ti { font-size: 16px; }
.calc-footer-note {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  margin-top: 18px;
  font-style: italic;
  line-height: 1.5;
  display: block;
}

/* =========================================
   IMPACTO ECONÓMICO
   ========================================= */
.impacto-section { background: #0f172a; padding: 72px 40px; }
.impacto-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.impacto-pregunta {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  color: #fff;
  margin-bottom: 36px;
  line-height: 1.2;
}
.impacto-num-big {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 90px);
  color: #22c55e;
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 500;
}
.impacto-num-sub {
  font-size: 15px;
  color: rgba(255,255,255,.42);
  margin-bottom: 36px;
  display: block;
}
.impacto-formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 0 auto 36px;
  max-width: 680px;
}
.formula-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
}
.formula-num {
  font-family: var(--font-display);
  font-size: 26px;
  color: #fff;
  font-weight: 500;
}
.formula-label { font-size: 11px; color: rgba(255,255,255,.38); margin-top: 3px; line-height: 1.3; display: block; }
.formula-op {
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(255,255,255,.25);
}
.impacto-frase {
  font-family: var(--font-display);
  font-size: 20px;
  color: rgba(255,255,255,.38);
  font-style: italic;
}

/* =========================================
   CASHFLOW
   ========================================= */
.cashflow { background: var(--gris-pale); }
.cashflow-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.cashflow-content .section-title { margin-bottom: 24px; }
.cashflow-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.cashflow-previews {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.cf-block-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.cf-card--wide { width: 100%; }
.cf-card {
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  font-size: 12px;
}
.cf-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding: 11px 14px;
  background: var(--azul-pale);
  border-bottom: 1px solid var(--borde);
}
.cf-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--carbon);
  letter-spacing: .01em;
}
.cf-card-body { padding: 12px 14px 14px; }
.cf-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.cf-badge--info {
  background: var(--blanco);
  color: var(--azul);
  border: 1px solid rgba(30, 64, 175, 0.15);
}
.cf-badge--soon {
  background: var(--verde-pale);
  color: var(--verde);
}
.cf-badge--warn {
  background: #fff7ed;
  color: #c2410c;
}
.cf-badge--overdue {
  background: var(--rojo-pale);
  color: var(--rojo);
}
.cf-card-body--table { padding: 14px 18px 16px; overflow-x: auto; }
.cf-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  table-layout: fixed;
}
.cf-col-semana { width: 22%; }
.cf-col-monto { width: 26%; }
.cf-col-saldo { width: 26%; }
.cf-table th {
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gris);
  padding: 0 12px 10px 0;
  border-bottom: 1px solid var(--borde);
}
.cf-table td {
  padding: 11px 12px 11px 0;
  color: var(--carbon-med);
  border-bottom: 1px solid var(--gris-pale);
  vertical-align: middle;
}
.cf-table tbody tr:last-child td { border-bottom: none; padding-bottom: 0; }
.cf-table th:not(:first-child),
.cf-table td:not(:first-child) { text-align: right; padding-right: 0; }
.cf-num { font-weight: 700; font-variant-numeric: tabular-nums; }
.cf-saldo--pos { color: var(--verde); }
.cf-saldo--neg { color: var(--rojo); }
.cf-mov-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cf-mov-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr) minmax(0, 1fr) auto;
  gap: 8px 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gris-pale);
}
.cf-mov-row:first-child { padding-top: 0; }
.cf-mov-row:last-child { border-bottom: none; padding-bottom: 0; }
.cf-mov-ente {
  font-weight: 600;
  color: var(--carbon);
  line-height: 1.35;
  min-width: 0;
}
.cf-mov-tipo {
  font-size: 11px;
  color: var(--gris);
  min-width: 0;
}
.cf-mov-monto {
  font-weight: 700;
  color: var(--carbon);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: right;
}
.cf-mov-row .cf-badge { justify-self: end; }
.cf-mov-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--borde);
  font-size: 11px;
  font-weight: 600;
  color: var(--gris);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.cf-mov-total .cf-mov-monto {
  font-size: 13px;
  color: var(--carbon);
  text-transform: none;
  letter-spacing: 0;
}

/* =========================================
   FOTO 30 SEG
   ========================================= */
.foto30 { background: var(--crema); }
.screenshot-showcase {
  margin-top: 28px;
  width: 100%;
}
.screenshot-link {
  display: block;
  cursor: zoom-in;
}
.screenshot-showcase img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--borde);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  display: block;
}
.foto-frase {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--azul);
  margin-top: 28px;
  padding: 18px 22px;
  border-left: 3px solid var(--azul-claro);
  background: var(--azul-pale);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

/* =========================================
   PRUEBA SOCIAL
   ========================================= */
.prueba-social { background: var(--gris-pale); }
.prueba-social .section-title { margin-bottom: 32px; }
.testimonios-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonios-row--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonios-row--2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.testimonios-row--2 .testimonio-card:nth-child(1) { grid-column: 2 / 4; }
.testimonios-row--2 .testimonio-card:nth-child(2) { grid-column: 4 / 6; }
.testimonio-card {
  margin: 0;
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  padding: 22px 22px 20px;
}
.testimonio-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 0.85;
  color: var(--azul-claro);
  margin-bottom: 6px;
}
.testimonio-quote {
  font-size: 15px;
  color: var(--carbon-med);
  line-height: 1.65;
  margin: 0;
}
.testimonio-atrib {
  margin-top: 16px;
  font-size: 12px;
  color: var(--gris);
  line-height: 1.5;
}

/* =========================================
   VIDEO
   ========================================= */
.video-section { background: var(--carbon); padding: 72px 40px; }
.video-placeholder {
  margin-top: 32px;
  background: rgba(255,255,255,.04);
  border: 2px dashed rgba(255,255,255,.12);
  border-radius: 14px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.video-placeholder .ti { font-size: 44px; color: rgba(255,255,255,.18); }
.video-placeholder p   { font-size: 13px; color: rgba(255,255,255,.28); text-align: center; line-height: 1.5; }
/* Cuando el video esté listo: */
#video-container video {
  width: 100%;
  border-radius: 14px;
  margin-top: 32px;
}

/* =========================================
   FEATURES
   ========================================= */
.features { background: var(--blanco); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.feature-card {
  padding: 24px 20px;
  border: 1px solid var(--borde);
  border-radius: 12px;
  background: var(--crema);
}
.feature-icon {
  width: 40px; height: 40px;
  background: var(--azul-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon .ti { font-size: 20px; color: var(--azul); }
.feature-title { font-family: var(--font-display); font-size: 17px; color: var(--carbon); margin-bottom: 8px; font-weight: 500; }
.feature-text  { font-size: 14px; color: var(--gris); line-height: 1.6; }
.features-export-note {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--gris);
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   QUIÉN ESTÁ DETRÁS
   ========================================= */
.quien { background: #f8f9fa; }
.quien-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 44px;
  align-items: center;
  margin-top: 32px;
}
.quien-foto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.quien-foto-caption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gris);
  text-align: center;
  line-height: 1.4;
}
#foto-florencio img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}
.quien-text h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--carbon);
  margin-bottom: 16px;
  font-weight: 500;
}
.quien-text p { font-size: 15px; color: var(--carbon-med); line-height: 1.75; margin-bottom: 10px; }
.quien-credencial {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--blanco);
  border-radius: 8px;
  border: 1px solid var(--borde);
  font-size: 12px;
  color: var(--gris);
  line-height: 1.5;
}

/* =========================================
   PARA QUÉ GRANJAS
   ========================================= */
.paragranjas { background: var(--blanco); }
.granjas-checks {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 540px;
}
.granja-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: var(--verde-pale);
  border-radius: 8px;
  font-size: 15px;
  color: var(--carbon-med);
}
.granja-item .ti { font-size: 16px; color: var(--verde); flex-shrink: 0; }

/* =========================================
   CÓMO EMPEZAMOS
   ========================================= */
.comoempezamos { background: var(--gris-pale); }
.pasos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.paso {
  padding: 24px 20px;
  background: var(--blanco);
  border-radius: 12px;
  border: 1px solid var(--borde);
}
.paso-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--azul-pale);
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 700;
}
.paso-title { font-family: var(--font-display); font-size: 17px; color: var(--carbon); margin-bottom: 8px; font-weight: 500; }
.paso-text  { font-size: 14px; color: var(--gris); line-height: 1.6; }

/* =========================================
   FAQ
   ========================================= */
.faq { background: var(--blanco); }
.faq-grid { margin-top: 32px; }
.faq-item {
  border-bottom: 1px solid var(--borde);
  padding: 18px 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--borde); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-q-text { font-size: 15px; font-weight: 600; color: var(--carbon); }
.faq-q .ti { font-size: 16px; color: var(--gris); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q .ti { transform: rotate(180deg); }
.faq-a {
  font-size: 14px;
  color: var(--gris);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 10px; }

/* =========================================
   CTA FINAL
   ========================================= */
.ctafinal { background: var(--azul); padding: 80px 40px; text-align: center; }
.ctafinal-inner { max-width: 600px; margin: 0 auto; }
.ctafinal h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 46px);
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}
.ctafinal h2 em { font-style: italic; color: #bfdbfe; }
.ctafinal > .ctafinal-inner > p {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--verde);
  color: #fff;
  border: none;
  padding: 17px 34px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  margin-bottom: 14px;
}
.cta-btn-main:hover { background: var(--verde-med); transform: translateY(-2px); }
.cta-btn-main .ti { font-size: 19px; }
.cta-trust {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
  display: block;
}
.cta-calendly {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.cta-calendly:hover { color: rgba(255,255,255,.65); }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: #0f172a;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo { font-family: var(--font-display); font-size: 17px; color: #fff; }
.footer-logo span { color: #93c5fd; font-weight: 300; }
.footer-text { font-size: 12px; color: rgba(255,255,255,.28); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  section { padding: 56px 20px; }
  #navbar { padding: 12px 20px; }
  .hero   { padding: 64px 20px 80px; }
  .calc-box { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .quien-grid { grid-template-columns: 1fr; }
  .cf-block-row { grid-template-columns: 1fr; }
  .cf-mov-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "ente badge"
      "tipo badge"
      "monto monto";
  }
  .cf-mov-ente { grid-area: ente; }
  .cf-mov-tipo { grid-area: tipo; }
  .cf-mov-monto { grid-area: monto; text-align: left; }
  .cf-mov-row .cf-badge { grid-area: badge; align-self: start; }
  .testimonios-row--3,
  .testimonios-row--2 { grid-template-columns: 1fr; }
  .testimonios-row--2 .testimonio-card:nth-child(1),
  .testimonios-row--2 .testimonio-card:nth-child(2) { grid-column: auto; }
  .pasos { grid-template-columns: 1fr; }
  .impacto-formula { grid-template-columns: 1fr; gap: 8px; }
  .formula-op { display: none; }
  .ad-row { grid-template-columns: 1fr; }
  .ad-cell.antes { border-right: none; border-bottom: 1px solid var(--borde); }
  .ad-headers { grid-template-columns: 1fr; }
  .ad-header.despues { border-left: none; border-top: 1px solid var(--borde); }
  .impacto-section { padding: 56px 20px; }
  .ctafinal { padding: 64px 20px; }
  footer { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .checklist { grid-template-columns: 1fr; }
}
