/* ============================================================
   HEALTH MAKERS — Estilos Custom V05
   Filosofía: 70% blanco/gris · 20% azul estratégico · 10% verde acento
   Paleta: Blue Reflex #1B1F8A | Verde Lima #AFCC23 | Negro #1A1A1A
   ============================================================ */

/* --- Variables de marca --- */
:root {
  --hm-blue:       #1B1F8A;
  --hm-blue-dark:  #0F1260;
  --hm-blue-light: #2329B0;
  --hm-green:      #AFCC23;
  --hm-green-dark: #8FA31A;
  --hm-black:      #1A1A1A;
  --hm-gray-bg:    #F5F6F8;
  --hm-gray-mid:   #E8EAF0;
  --hm-gray-dark:  #1E2235;   /* Reemplaza el azul oscuro en footer */
  --hm-text:       #374151;
  --hm-text-muted: #6B7280;
  --hm-white:      #FFFFFF;
  --hm-radius:     10px;
  --hm-radius-lg:  16px;
  --hm-shadow:     0 2px 16px rgba(27,31,138,0.08);
  --hm-shadow-lg:  0 8px 40px rgba(27,31,138,0.13);
  --hm-transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--hm-text);
  background: var(--hm-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--hm-blue);
}

a { color: var(--hm-blue); text-decoration: none; transition: var(--hm-transition); }
a:hover { color: var(--hm-green-dark); }
img { max-width: 100%; height: auto; }

/* ============================================================
   NAVBAR — Azul estratégico #1 (siempre visible, ancla de marca)
   ============================================================ */
#navbar {
  background: rgba(27,31,138,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--hm-transition);
  padding: 0.6rem 0;
  border-bottom: 2px solid transparent;
}

#navbar.scrolled {
  background: rgba(15,18,96,0.99);
  border-bottom-color: var(--hm-green);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  padding: 0.4rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 2px 0;
}

/* Logo PNG sobre navbar azul: pastilla blanca detrás para que azul+verde sean legibles */
.navbar-brand img.brand-logo {
  height: 34px;
  width: auto;
  background: #ffffff;
  border-radius: 7px;
  padding: 4px 10px;
  display: block;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem !important;
  border-radius: 6px;
  transition: var(--hm-transition);
}

.navbar-nav .nav-link:hover { color: var(--hm-white) !important; background: rgba(175,204,35,0.15); }
.navbar-nav .nav-link.active { color: var(--hm-green) !important; }

.btn-nav-cta {
  background: var(--hm-green) !important;
  color: var(--hm-blue-dark) !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 6px !important;
  border: none !important;
  transition: var(--hm-transition) !important;
}

.btn-nav-cta:hover {
  background: #c6e028 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(175,204,35,0.4) !important;
}

.navbar-toggler {
  border: 1.5px solid rgba(175,204,35,0.5) !important;
  padding: 4px 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28175,204,35,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================================
   S1 — HERO (único lugar donde el overlay azul tiene sentido:
   es una cancha nocturna, la oscuridad es atmosférica)
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hm-blue-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--hm-blue-dark);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  z-index: 0;
  background-image: linear-gradient(135deg, #0F1260 0%, #1B1F8A 50%, #0F1260 100%);
}

.hero-bg.loaded { transform: scale(1); }

/* Overlay muy ligero — la foto es la protagonista, el azul es solo un tinte */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,18,96,0.45) 0%,
    rgba(27,31,138,0.28) 50%,
    rgba(15,18,96,0.40) 100%
  );
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Gradiente oscuro solo en la parte inferior para que el texto sea legible */
  background: linear-gradient(to top, rgba(10,14,80,0.70) 0%, rgba(10,14,80,0.10) 45%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--hm-green);
  background: rgba(175,204,35,0.12);
  border: 1px solid rgba(175,204,35,0.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--hm-white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title .accent { color: var(--hm-green); }

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hm-green);
  color: var(--hm-blue-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  transition: var(--hm-transition);
  box-shadow: 0 4px 20px rgba(175,204,35,0.35);
}

.btn-hero-cta:hover {
  background: #c6e028;
  color: var(--hm-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(175,204,35,0.50);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--hm-green);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 3px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: rgba(175,204,35,0.7);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { top: 5px; opacity: 1; }
  80% { top: 16px; opacity: 0; }
}

/* ============================================================
   SECCIÓN GENÉRICA — helpers
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hm-green-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--hm-blue);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1rem;
  color: var(--hm-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.divider-accent {
  width: 44px;
  height: 4px;
  background: var(--hm-green);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

/* ============================================================
   S2 — EL DOLOR SOLUCIONADO — fondo blanco
   ============================================================ */
#dolor { padding: 100px 0; background: var(--hm-white); }

.dolor-card {
  background: var(--hm-white);
  border-radius: var(--hm-radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid var(--hm-gray-mid);
  border-bottom: 4px solid var(--hm-green);
  transition: var(--hm-transition);
  box-shadow: var(--hm-shadow);
}

.dolor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hm-shadow-lg);
  border-bottom-color: var(--hm-blue);
}

.dolor-icon {
  width: 52px;
  height: 52px;
  background: var(--hm-gray-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--hm-transition);
}

.dolor-card:hover .dolor-icon { background: var(--hm-blue); }

.dolor-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--hm-blue);
  fill: none;
  transition: var(--hm-transition);
}

.dolor-card:hover .dolor-icon svg { stroke: var(--hm-white); }

.dolor-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hm-blue);
  margin-bottom: 0.5rem;
}

.dolor-card p {
  font-size: 0.9rem;
  color: var(--hm-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   S3 — SERVICIOS — fondo gris corporativo
   ============================================================ */
#servicios { padding: 100px 0; background: var(--hm-gray-bg); }

.servicio-card {
  background: var(--hm-white);
  border-radius: var(--hm-radius-lg);
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--hm-gray-mid);
  transition: var(--hm-transition);
  box-shadow: var(--hm-shadow);
}

.servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hm-shadow-lg);
  border-color: rgba(27,31,138,0.2);
}

/* Cabecera de tarjeta: línea azul superior delgada en lugar de fondo azul completo */
.servicio-header {
  background: var(--hm-white);
  padding: 1.75rem 1.75rem 0;
  border-top: 4px solid var(--hm-blue);
  position: relative;
}

.servicio-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--hm-gray-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--hm-transition);
}

.servicio-card:hover .servicio-icon-wrap { background: var(--hm-blue); }

.servicio-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--hm-blue);
  fill: none;
  transition: var(--hm-transition);
}

.servicio-card:hover .servicio-icon-wrap svg { stroke: var(--hm-white); }

.servicio-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hm-blue);
  margin: 0 0 0.4rem;
}

.servicio-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--hm-green-dark);
  background: rgba(143,163,26,0.1);
  border: 1px solid rgba(143,163,26,0.25);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.25rem;
}

.servicio-body { padding: 1.25rem 1.75rem 1.75rem; }

.servicio-body p {
  font-size: 0.9rem;
  color: var(--hm-text-muted);
  line-height: 1.65;
  margin: 0;
}

.servicio-lista {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.servicio-lista li {
  font-size: 0.875rem;
  color: var(--hm-text);
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
}

.servicio-lista li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--hm-green);
  border-radius: 50%;
}

/* ============================================================
   S4 — QUIÉNES SOMOS / RESPALDO — fondo blanco
   Azul estratégico #2: solo el bloque del contador 25+
   ============================================================ */
#nosotros { padding: 100px 0; background: var(--hm-white); }

.counter-block {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--hm-blue);           /* Azul estratégico — único en esta sección */
  border-radius: var(--hm-radius-lg);
  position: relative;
  overflow: hidden;
}

.counter-block::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(175,204,35,0.12);
  border-radius: 50%;
}

.counter-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--hm-green);
  line-height: 1;
  letter-spacing: -2px;
}

.counter-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
  line-height: 1.4;
}

.nosotros-card {
  background: var(--hm-gray-bg);
  border-radius: var(--hm-radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  border-left: 4px solid var(--hm-green);
  transition: var(--hm-transition);
}

.nosotros-card:hover {
  background: var(--hm-white);
  box-shadow: var(--hm-shadow-lg);
}

.nosotros-card .card-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hm-green-dark);
  margin-bottom: 0.5rem;
}

.nosotros-card h4 { font-size: 1.05rem; color: var(--hm-blue); margin-bottom: 0.75rem; }
.nosotros-card p { font-size: 0.9rem; color: var(--hm-text-muted); line-height: 1.7; margin: 0; }

/* ============================================================
   S5 — CONFIDENCIALIDAD — fondo gris corporativo
   Azul estratégico #3: solo el ícono central (tarjeta pequeña)
   ============================================================ */
#confidencialidad {
  padding: 100px 0;
  background: var(--hm-gray-bg);        /* Antes era azul sólido — ahora gris limpio */
  position: relative;
}

/* Tarjeta central con el candado — el único toque azul de la sección */
.conf-card {
  background: var(--hm-white);
  border-radius: var(--hm-radius-lg);
  padding: 3rem 2.5rem;
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--hm-gray-mid);
  box-shadow: var(--hm-shadow-lg);
  position: relative;
  overflow: hidden;
}

.conf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hm-blue) 0%, var(--hm-green) 100%);
}

.conf-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--hm-blue);           /* Ícono en azul — punto focal */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(27,31,138,0.25);
}

.conf-icon-wrap svg {
  width: 32px;
  height: 32px;
  stroke: var(--hm-white);              /* Ícono blanco sobre azul */
  fill: none;
}

#confidencialidad .section-title {
  color: var(--hm-blue);               /* Título azul sobre blanco */
  text-align: center;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}

#confidencialidad .section-eyebrow { display: block; text-align: center; }

.conf-card p {
  color: var(--hm-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  text-align: center;
  margin: 0 0 1rem;
}

.conf-card p:last-of-type { margin-bottom: 1.75rem; }

.btn-conf-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hm-blue);          /* CTA azul sólido */
  color: var(--hm-white);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--hm-transition);
}

.btn-conf-cta:hover {
  background: var(--hm-blue-light);
  color: var(--hm-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,31,138,0.3);
}

/* ============================================================
   S6 — FOOTER / CONTACTO — gris oscuro neutro (no azul)
   ============================================================ */
#contacto {
  background: var(--hm-gray-dark);      /* #1E2235 — gris oscuro, no azul */
  padding: 80px 0 0;
}

.contacto-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--hm-radius-lg);
  padding: 2.5rem;
}

.contacto-form-wrap h3 { color: var(--hm-white); font-size: 1.3rem; margin-bottom: 0.4rem; }

.contacto-form-wrap .form-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-bottom: 1.75rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
  margin-bottom: 5px;
}

.form-control, .form-select {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 8px !important;
  color: var(--hm-white) !important;
  font-size: 0.9rem;
  padding: 10px 14px;
  transition: var(--hm-transition);
}

.form-control::placeholder { color: rgba(255,255,255,0.3) !important; }

.form-control:focus, .form-select:focus {
  background: rgba(255,255,255,0.10) !important;
  border-color: var(--hm-green) !important;
  box-shadow: 0 0 0 3px rgba(175,204,35,0.15) !important;
  color: var(--hm-white) !important;
  outline: none;
}

.form-select option { background: var(--hm-gray-dark); color: var(--hm-white); }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  background: var(--hm-green);
  color: var(--hm-blue-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--hm-transition);
  margin-top: 0.5rem;
}

.btn-submit:hover:not(:disabled) {
  background: #c6e028;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(175,204,35,0.4);
}

.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-msg {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-top: 1rem;
  text-align: center;
}

.form-msg.success {
  background: rgba(175,204,35,0.12);
  border: 1px solid rgba(175,204,35,0.3);
  color: #c6e028;
}

.form-msg.error {
  background: rgba(220,53,69,0.12);
  border: 1px solid rgba(220,53,69,0.3);
  color: #f87171;
}

/* Info lateral contacto */
.contacto-info h4 { color: var(--hm-white); font-size: 1rem; margin-bottom: 1.25rem; }

.contacto-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.contacto-info-icon {
  width: 40px; height: 40px;
  background: rgba(175,204,35,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contacto-info-icon svg { width: 20px; height: 20px; stroke: var(--hm-green); fill: none; }
.contacto-info-text p  { margin: 0; font-size: 0.875rem; color: rgba(255,255,255,0.7); }

.contacto-info-text strong {
  display: block;
  color: var(--hm-white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

/* Footer bottom bar */
.footer-bar {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
  margin-top: 60px;
}

.footer-bar p { color: rgba(255,255,255,0.38); font-size: 0.78rem; margin: 0; }
.footer-bar a { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.footer-bar a:hover { color: var(--hm-green); }

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.wa-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--hm-transition);
  text-decoration: none;
  position: relative;
}

.wa-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: waPulse 2.5s ease-out infinite;
}

.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.60); }

.wa-btn svg { width: 30px; height: 30px; fill: #fff; position: relative; z-index: 1; }

.wa-tooltip {
  background: var(--hm-gray-dark);
  color: var(--hm-white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--hm-transition);
  pointer-events: none;
  box-shadow: var(--hm-shadow);
}

.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================================
   ANIMACIONES DE ENTRADA
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  #hero { min-height: 90vh; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .navbar-collapse {
    background: rgba(15,18,96,0.98);
    padding: 1rem;
    border-radius: 0 0 12px 12px;
  }
}

@media (max-width: 767px) {
  #dolor, #servicios, #nosotros, #confidencialidad { padding: 70px 0; }
  #contacto { padding: 60px 0 0; }
  .hero-content { padding: 100px 0 70px; }
  .hero-title { font-size: 1.85rem; }
  .contacto-form-wrap { padding: 1.5rem; }
  .conf-card { padding: 2rem 1.5rem; }
  .wa-float { bottom: 20px; right: 20px; }
  .wa-btn { width: 52px; height: 52px; }
}

@media (max-width: 575px) {
  .hero-stats { gap: 1rem; }
  .hero-stat-num { font-size: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; }
}

/* ============================================================
   V06 — S2 PROPUESTA DE VALOR (estructura dos columnas del flyer)
   ============================================================ */

/* Título grande izquierdo — verde como en el flyer */
.dolor-big-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--hm-blue);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

/* Banda de impacto inferior — "+15,000 Atletas | +200 Eventos" */
.impacto-band {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--hm-gray-bg);
  border-radius: var(--hm-radius-lg);
  border-left: 4px solid var(--hm-blue);
  flex-wrap: wrap;
  margin-top: 1rem;
}

.impacto-item {
  flex: 1;
  min-width: 240px;
}

.impacto-label {
  font-size: 0.82rem;
  color: var(--hm-text-muted);
  font-style: italic;
  line-height: 1.5;
}

.impacto-divider {
  width: 1px;
  height: 48px;
  background: var(--hm-gray-mid);
  flex-shrink: 0;
}

.impacto-num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
}

.impacto-big {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--hm-blue);
  letter-spacing: -1px;
  line-height: 1;
}

.impacto-desc {
  font-size: 0.78rem;
  color: var(--hm-text-muted);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.impacto-sep {
  font-size: 2rem;
  color: var(--hm-green);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .impacto-band { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.5rem; }
  .impacto-divider { display: none; }
  .impacto-sep { display: none; }
}
