/* ═══════════════════════════════════════════
   ADMIVAL LANDING PAGE — style.css
   Paleta coherente con el aplicativo
════════════════════════════════════════════ */

:root {
  --navy:    #0d2137;
  --navy2:   #0a2e28;
  --teal:    #1e6a8a;
  --green:   #1ABB9C;
  --green2:  #13a083;
  --text:    #2c3e50;
  --muted:   #6c7a89;
  --light:   #f5f7fa;
  --white:   #ffffff;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
}

/* ── Reset & base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
}

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

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Botones ──────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  letter-spacing: .3px;
  font-family: 'Poppins', sans-serif;
}
.btn-primary:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,187,156,.35);
  color: #fff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,.55);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
  color: #fff;
}

.btn-ingresar {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  transition: opacity .2s, transform .15s;
}
.btn-ingresar:hover { opacity: .88; transform: translateY(-1px); color: #fff; }
.btn-ingresar-mobile { display: none; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 24px;
  transition: background .2s, transform .15s;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); color: #fff; }

/* ── Section helpers ──────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 14px;
}
.section-header p { color: var(--muted); font-size: 15px; max-width: 540px; margin: 0 auto; }
.section-header.light h2 { color: #fff; }
.section-header.light p  { color: rgba(255,255,255,.7); }
.section-header.light .section-tag { background: rgba(26,187,156,.2); color: var(--green); }

.section-tag {
  display: inline-block;
  background: rgba(26,187,156,.1);
  color: var(--green2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .35s, box-shadow .35s, padding .3s;
  padding: 18px 0;
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.22);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-logo img {
  height: 38px;
  width: auto;
  /* El logo tiene fondo blanco — lo filtramos a blanco para el header oscuro */
  filter: brightness(0) invert(1);
  transition: height .3s;
}
.site-header.scrolled .header-logo img { height: 34px; }

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.main-nav a {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 2px;
  background: var(--green);
  transition: right .25s;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { right: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ═══════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13,33,55,.88) 0%,
    rgba(10,46,40,.78) 60%,
    rgba(13,33,55,.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  max-width: 700px;
}

.hero-eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 22px;
}

.hero-sub {
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-sub strong { color: #fff; font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: 20px;
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════
   SERVICIOS
════════════════════════════════════════════ */
.servicios {
  padding: 100px 0;
  background: var(--light);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.servicio-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  border-bottom: 3px solid transparent;
}
.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  border-bottom-color: var(--green);
}

.servicio-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.servicio-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.servicio-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── ¿Para quién? ─────────────────────────── */
.para-quien {
  background: linear-gradient(135deg, #0a1e2e 0%, #0d2a24 100%);
  padding: 52px 0;
  border-top: 3px solid var(--green);
}
.para-quien-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.para-quien-label {
  color: rgba(255,255,255,.6);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.para-quien-items {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.pq-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 20px 28px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  min-width: 160px;
  text-align: center;
  transition: background .2s, border-color .2s;
}
.pq-item:hover { background: rgba(26,187,156,.12); border-color: var(--green); }
.pq-item i { color: var(--green); font-size: 22px; }
.pq-item strong { color: #fff; font-weight: 700; display: block; }
.pq-sep { display: none; }

/* ── Clientes ─────────────────────────────── */
.clientes {
  background: #f9fafb;
  padding: 48px 0;
  border-bottom: 1px solid #eef0f3;
}
.clientes-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 28px;
}
.clientes-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cliente-logo img {
  height: 40px;
  width: auto;
  filter: grayscale(100%) opacity(50%);
  transition: filter .25s;
  object-fit: contain;
}
.cliente-logo img:hover { filter: grayscale(0%) opacity(100%); }

/* ── Paquetes principales ─────────────────── */
.paquetes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.paquete-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px 32px;
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid #eef0f3;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.paquete-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }

.paquete-destacado {
  border-color: var(--green);
  background: linear-gradient(160deg, #f0fdf8 0%, #fff 60%);
}

.paquete-badge {
  position: absolute;
  top: -14px; left: 28px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.badge-green { background: var(--green); }

.paquete-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--teal);
  margin-bottom: 18px;
}
.paquete-destacado .paquete-icon { background: rgba(26,187,156,.12); color: var(--green); }

.paquete-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.paquete-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.65;
}

.paquete-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  flex: 1;
}
.paquete-lista li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--text);
}
.paquete-lista li .fa-check {
  color: var(--green);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}

.btn-paquete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  background: var(--navy);
  color: #fff;
  transition: opacity .2s, transform .15s;
}
.btn-paquete:hover { opacity: .85; transform: translateY(-1px); color: #fff; }
.btn-paquete-green { background: linear-gradient(135deg, var(--green), var(--green2)); }

/* ── Registro de Marcas ───────────────────── */
.marcas-banner {
  background: linear-gradient(135deg, #1e3a5c 0%, #0d2137 100%);
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}
.marcas-icono {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(26,187,156,.18);
  border: 2px solid rgba(26,187,156,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  color: var(--green);
  flex-shrink: 0;
}
.marcas-tag {
  display: inline-block;
  background: rgba(26,187,156,.18);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.marcas-texto { flex: 1; }
.marcas-texto h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.marcas-texto p  { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.65; }

.btn-marcas {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
.btn-marcas:hover { background: var(--green2); transform: translateY(-1px); color: #fff; }

/* ── Planeación Familiar ──────────────────── */
.planeacion-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  border-left: 4px solid var(--teal);
}
.planeacion-icono {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: #e8f4f8;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--teal);
  flex-shrink: 0;
}
.planeacion-texto { flex: 1; }
.planeacion-texto h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.planeacion-texto p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.btn-ghost-dark:hover { background: var(--teal); color: #fff; }

/* ── Otros servicios ──────────────────────── */
.otros-servicios {
  text-align: center;
}
.otros-servicios h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}
.otros-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.otro-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--text);
  transition: border-color .2s, color .2s;
}
.otro-item:hover { border-color: var(--green); color: var(--green2); }
.otro-item .fa { color: var(--teal); font-size: 12px; }

/* ═══════════════════════════════════════════
   ¿POR QUÉ ADMIVAL?
════════════════════════════════════════════ */
.por-que {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 100%);
}

.porque-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.porque-item {
  text-align: center;
  padding: 32px 20px;
}

.porque-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(26,187,156,.15);
  border: 2px solid rgba(26,187,156,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--green);
  margin: 0 auto 20px;
  transition: background .2s, transform .2s;
}
.porque-item:hover .porque-icon {
  background: rgba(26,187,156,.28);
  transform: scale(1.08);
}

.porque-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.porque-item p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   ESTADÍSTICAS
════════════════════════════════════════════ */
.stats {
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-num {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.82);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   CTA SISTEMA
════════════════════════════════════════════ */
.cta-sistema {
  background: var(--light);
  padding: 72px 0;
  border-top: 1px solid #e8edf2;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-texto h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.cta-texto p {
  color: var(--muted);
  font-size: 14px;
  max-width: 480px;
}

/* ═══════════════════════════════════════════
   CONTACTO
════════════════════════════════════════════ */
.contacto {
  padding: 100px 0;
  background: var(--white);
}

.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contacto-info .section-tag { margin-bottom: 8px; }
.contacto-info h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.contacto-info > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 30px;
}

.contacto-datos { display: flex; flex-direction: column; gap: 18px; }

.dato {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.dato i {
  margin-top: 3px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(26,187,156,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green2);
  font-size: 14px;
  flex-shrink: 0;
}
.dato strong { display: block; font-size: 12px; font-weight: 700; color: var(--navy); }
.dato span   { font-size: 13px; color: var(--muted); }

/* Formulario */
.contacto-form {
  background: var(--light);
  border-radius: 16px;
  padding: 40px 36px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,187,156,.12);
}
.form-group textarea { resize: vertical; }

/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--green); color: #fff; }

.footer-links h4 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .porque-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .paquetes-grid  { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .contacto-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner      { flex-direction: column; text-align: center; }
  .marcas-banner  { flex-direction: column; text-align: center; padding: 32px 24px; }
  .planeacion-card { flex-direction: column; text-align: center; padding: 28px 24px; }
  .btn-ghost-dark { margin-top: 8px; }

  .main-nav { display: none; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0; background: var(--navy);
    align-items: center; justify-content: center; gap: 32px; z-index: 999; }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 18px; }
  .btn-ingresar { display: none; }
  .hamburger { display: flex; z-index: 1000; }
  .btn-ingresar-mobile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green), var(--green2));
    color: #fff !important;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    margin-top: 8px;
  }

  .hero-title { font-size: 30px; }
  .hero-sub   { font-size: 14px; }
}

@media (max-width: 560px) {
  .servicios-grid { grid-template-columns: 1fr; }
  .porque-grid    { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-inner   { grid-template-columns: 1fr; }
  .contacto-form  { padding: 28px 20px; }
}
