/* ===== Fundación Chileva — Design tokens ===== */
:root {
  /* Primarios */
  --azul: #1F3A5F;
  --azul-oscuro: #0C336A;
  --azul-medio: #4A6FA5;
  --coral-profundo: #C44536;
  --coral: #E07A5F;
  --coral-suave: #F2C6C2;
  --coral-muy-suave: #FAD4D2;

  /* Neutros */
  --blanco: #FFFFFF;
  --gris-claro: #F5F7FA;
  --borde: #A0AEC0;
  --borde-soft: #E2E8F0;
  --texto-secundario: #6B7280;
  --texto: #2D3748;

  /* Acentos funcionales */
  --verde: #5E8C61;
  --mostaza: #D4A373;

  /* Sistema */
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, .07);
  --shadow-lg: 0 14px 40px rgba(15, 23, 42, .10);
  --container: 1200px;

  --font-brand: 'Inter', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --font-display: 'Fraunces', 'Inter', Georgia, serif;
}

* { box-sizing: border-box; }
html, body { padding: 0; margin: 0; }
body {
  font-family: var(--font-brand);
  color: var(--texto);
  background: var(--blanco);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--azul); text-decoration: none; }
a:hover { color: var(--coral-profundo); }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ===== Layout ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 88px 0;
}
.section.tight { padding: 56px 0; }
.section.alt { background: var(--gris-claro); }

/* ===== Top accent bar ===== */
.accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--azul) 0%, var(--azul) 55%, var(--coral) 55%, var(--coral) 100%);
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--borde-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}
.brand img { height: 48px; width: auto; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}
.brand-text .brand-name {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--azul);
}
.brand-text .brand-tag {
  font-size: 11px;
  color: var(--texto-secundario);
  letter-spacing: .02em;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  padding: 10px 14px;
  color: var(--texto);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14.5px;
  position: relative;
  transition: color .15s ease;
}
.nav-link:hover { color: var(--azul); }
.nav-link.active { color: var(--azul); font-weight: 600; }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.nav-cta {
  background: var(--azul);
  color: #fff;
  border: 0;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s ease;
}
.nav-cta:hover { background: var(--azul-oscuro); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-profundo); color: #fff; }
.btn-secondary {
  background: var(--azul);
  color: #fff;
}
.btn-secondary:hover { background: var(--azul-oscuro); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--azul);
  border: 1.5px solid var(--azul);
}
.btn-ghost:hover { background: var(--azul); color: #fff; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ===== Type ===== */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-profundo);
}
.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--azul);
  font-weight: 700;
  line-height: 1.15;
  margin: 12px 0 16px;
  letter-spacing: -.01em;
}
.section-lead {
  font-size: 18px;
  color: var(--texto-secundario);
  max-width: 64ch;
  margin: 0;
}
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.025em;
  color: var(--azul);
}

/* ===== Hero — base ===== */
.hero { position: relative; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  padding: 88px 0 96px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--azul);
  margin: 18px 0 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--coral-profundo);
  font-weight: 500;
}
.hero p.lead {
  font-size: 19px;
  color: var(--texto-secundario);
  max-width: 50ch;
  margin: 0 0 28px;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--texto-secundario);
  background: var(--gris-claro);
  border: 1px solid var(--borde-soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--verde);
}

/* Hero variant: institucional */
.hero.v-institucional {
  background:
    radial-gradient(900px 500px at 110% -10%, rgba(224, 122, 95, .07), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--gris-claro) 100%);
}
.hero.v-institucional .hero-art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1F3A5F;
}

/* Hero variant: editorial */
.hero.v-editorial {
  background: var(--blanco);
}
.hero.v-editorial .hero-inner {
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.hero.v-editorial h1 {
  font-size: clamp(52px, 7.2vw, 96px);
  line-height: .98;
}
.hero.v-editorial .hero-art {
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--coral-muy-suave);
  position: relative;
  overflow: hidden;
}

/* Hero variant: moderno */
.hero.v-moderno {
  background: var(--azul);
  color: #fff;
}
.hero.v-moderno .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 120px 0;
}
.hero.v-moderno .eyebrow { color: var(--coral); }
.hero.v-moderno h1 {
  color: #fff;
  font-size: clamp(56px, 9vw, 128px);
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.hero.v-moderno h1 em { color: var(--coral); }
.hero.v-moderno p.lead {
  color: rgba(255,255,255,.78);
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
}
.hero.v-moderno .hero-actions {
  justify-content: center;
}
.hero.v-moderno .hero-badges {
  justify-content: center;
}
.hero.v-moderno .badge {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
}

/* ===== Placeholder art ===== */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 8px, rgba(255,255,255,0) 8px 16px),
    linear-gradient(135deg, var(--azul) 0%, var(--azul-medio) 100%);
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
  border-radius: inherit;
  overflow: hidden;
}
.ph.coral {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 8px, rgba(255,255,255,0) 8px 16px),
    linear-gradient(135deg, var(--coral-profundo) 0%, var(--coral) 100%);
}
.ph.soft {
  background:
    repeating-linear-gradient(45deg, rgba(31,58,95,.05) 0 8px, rgba(31,58,95,0) 8px 16px),
    var(--coral-muy-suave);
  color: var(--azul);
}
.ph .ph-label {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .04em;
  background: rgba(0,0,0,.18);
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
}
.ph.soft .ph-label { background: rgba(31,58,95,.1); }

/* ===== Stats strip ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--borde-soft);
  border-bottom: 1px solid var(--borde-soft);
}
.stat {
  padding: 28px 24px;
  border-right: 1px solid var(--borde-soft);
}
.stat:last-child { border-right: 0; }
.stat-value {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--azul);
  letter-spacing: -.02em;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--texto-secundario);
  margin-top: 6px;
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  gap: 20px;
}
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--borde-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  position: relative;
}
.card:hover {
  border-color: var(--azul-medio);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card .card-icon {
  width: 44px; height: 44px;
  background: var(--gris-claro);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--azul);
  margin-bottom: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 18px;
}
.card.coral .card-icon { background: var(--coral-muy-suave); color: var(--coral-profundo); }
.card h3 {
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--azul);
  font-weight: 600;
}
.card p { margin: 0; color: var(--texto-secundario); font-size: 14.5px; line-height: 1.55; }
.card .card-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--coral-profundo);
}

/* Service category */
.service-category {
  padding: 32px 0;
  border-top: 1px solid var(--borde-soft);
}
.service-category:first-of-type { border-top: 0; padding-top: 0; }
.service-category-head {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  margin-bottom: 24px;
  align-items: start;
}
.service-category-head h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--azul);
  font-weight: 500;
  margin: 0;
  letter-spacing: -.01em;
}
.service-category-head p {
  margin: 0;
  color: var(--texto-secundario);
  font-size: 16px;
}
.service-category .card-grid { margin-top: 8px; }

.service-add {
  border: 1.5px dashed var(--borde);
  background: transparent;
  border-radius: var(--radius-lg);
  padding: 28px;
  cursor: pointer;
  color: var(--texto-secundario);
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  transition: border-color .15s ease, color .15s ease;
}
.service-add:hover { border-color: var(--azul); color: var(--azul); }

/* Editable input — inline */
.edit-field {
  background: transparent;
  border: 0;
  border-bottom: 1px dashed transparent;
  font: inherit;
  color: inherit;
  width: 100%;
  padding: 2px 0;
  resize: none;
}
.edit-field:focus {
  outline: 0;
  border-bottom-color: var(--coral);
}
.edit-field:hover { border-bottom-color: var(--borde); }

/* Audience pills (Portada) */
.audience-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.audience-pill {
  background: #fff;
  border: 1px solid var(--borde-soft);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.audience-pill:hover {
  border-color: var(--azul-medio);
  box-shadow: var(--shadow-sm);
}
.audience-pill .num {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--coral-profundo);
  font-size: 13px;
  letter-spacing: .04em;
}
.audience-pill h4 {
  margin: 0;
  color: var(--azul);
  font-weight: 600;
  font-size: 16px;
}
.audience-pill p {
  margin: 0;
  color: var(--texto-secundario);
  font-size: 13.5px;
}

/* ===== Testimonios ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--borde-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s ease, transform .15s ease;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testi-media {
  aspect-ratio: 16/10;
  position: relative;
  background: var(--gris-claro);
}
.testi-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.testi-play span {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  font-size: 18px;
  color: var(--coral-profundo);
  font-weight: 700;
}
.testi-body {
  padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.testi-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--texto);
  margin: 0;
}
.testi-who {
  font-size: 13px;
  color: var(--texto-secundario);
  font-weight: 500;
}
.testi-who strong { color: var(--azul); font-weight: 600; }

/* Logos / clientes wall */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--borde-soft);
  border: 1px solid var(--borde-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.logo-cell {
  background: #fff;
  aspect-ratio: 3/2;
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--texto-secundario);
  padding: 12px;
  text-align: center;
}
.logo-cell .client-name {
  color: var(--azul);
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

/* ===== Forms ===== */
.form {
  display: grid;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--azul);
  letter-spacing: .01em;
}
.field input, .field textarea, .field select {
  border: 1px solid var(--borde-soft);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  color: var(--texto);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--azul);
  box-shadow: 0 0 0 3px rgba(31,58,95,.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .err {
  font-size: 12px;
  color: var(--coral-profundo);
  font-weight: 500;
}
.field.has-err input, .field.has-err textarea {
  border-color: var(--coral-profundo);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-success {
  background: rgba(94, 140, 97, .1);
  border: 1px solid rgba(94, 140, 97, .35);
  color: var(--verde);
  padding: 16px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form-success strong { color: #355738; }

/* ===== Convenios ===== */
.convenio-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--borde-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.convenio-content {
  padding: 40px;
}
.convenio-content .eyebrow { color: var(--coral-profundo); }
.convenio-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--azul);
  font-weight: 500;
  margin: 8px 0 16px;
}
.convenio-meta {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--borde-soft);
}
.convenio-meta .meta-key {
  font-size: 11px;
  color: var(--texto-secundario);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.convenio-meta .meta-val {
  color: var(--azul);
  font-weight: 600;
  font-size: 15px;
}
.convenio-art {
  background: linear-gradient(135deg, var(--coral-muy-suave) 0%, #fff 100%);
  display: grid; place-items: center;
  padding: 40px;
}

/* Aula virtual */
.aula-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.aula-mock {
  background: var(--azul);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-lg);
}
.aula-mock-bar {
  display: flex; gap: 6px;
  padding: 6px 8px 10px;
}
.aula-mock-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.3);
}
.aula-mock-screen {
  background: #fff;
  border-radius: 4px;
  padding: 18px;
  display: grid;
  gap: 12px;
}
.aula-mock-row {
  height: 12px;
  border-radius: 3px;
  background: var(--gris-claro);
}
.aula-mock-row.short { width: 60%; }
.aula-mock-row.tall { height: 70px; background: var(--coral-muy-suave); }
.aula-mock-courses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.aula-mock-course {
  aspect-ratio: 4/3;
  border-radius: 4px;
  background:
    repeating-linear-gradient(135deg, rgba(31,58,95,.05) 0 6px, transparent 6px 12px),
    var(--gris-claro);
  position: relative;
}
.aula-mock-course:nth-child(2) {
  background:
    repeating-linear-gradient(135deg, rgba(224,122,95,.12) 0 6px, transparent 6px 12px),
    var(--coral-muy-suave);
}

/* ===== Footer ===== */
.footer {
  background: var(--azul);
  color: rgba(255,255,255,.78);
  padding: 56px 0 28px;
  margin-top: 56px;
}
.footer a { color: rgba(255,255,255,.78); }
.footer a:hover { color: #fff; }
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer h5 {
  color: #fff;
  font-size: 13px;
  margin: 0 0 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-brand img { height: 56px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-brand p { font-size: 14px; max-width: 32ch; margin: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.55); }

/* Page header (sub-pages) */
.page-head {
  padding: 64px 0 32px;
  background: linear-gradient(180deg, var(--gris-claro) 0%, transparent 100%);
}
.page-head .crumbs {
  font-size: 13px;
  color: var(--texto-secundario);
  margin-bottom: 12px;
}
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--azul);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.page-head .page-lead {
  font-size: 19px;
  color: var(--texto-secundario);
  max-width: 60ch;
}

/* CTA strip */
.cta-strip {
  background: var(--azul);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 8px;
  color: #fff;
}
.cta-strip p { margin: 0; color: rgba(255,255,255,.78); }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner, .aula-hero, .convenio-card { grid-template-columns: 1fr; }
  .audience-row { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .service-category-head { grid-template-columns: 1fr; gap: 12px; }
  .cta-strip { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .audience-row, .card-grid.cols-3, .testi-grid, .card-grid.cols-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .convenio-content { padding: 24px; }
  .stat-value { font-size: 36px; }
}
