/* ==========================================================================
   Landing pública — TodoBebés Ecografías
   ========================================================================== */

:root {
  --celeste:       #4ec3f7;
  --celeste-osc:   #1f9fda;
  --rosa:          #ff5ea8;
  --rosa-osc:      #e83e91;
  --morado:        #a855f7;
  --texto:         #1a1f36;
  --texto-suave:   #64748b;
  --fondo:         #f8faff;
  --blanco:        #ffffff;
  --gris-borde:    #e6ebf3;
  --radio:         20px;
  --radio-sm:      12px;
  --radio-pill:    999px;
  --grad-marca:    linear-gradient(135deg, var(--celeste) 0%, var(--rosa) 100%);
  --grad-rosa:     linear-gradient(135deg, #ff7bbf, #e83e91);
  --sombra-s:      0 4px 16px -4px rgba(26,31,54,.10);
  --sombra-m:      0 12px 36px -8px rgba(26,31,54,.16);
  --sombra-l:      0 24px 60px -16px rgba(26,31,54,.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--texto);
  overflow-x: hidden;
  position: relative;
  /* Degradado acuarela rosa/celeste de fondo */
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 200, 222, 0.55), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(180, 214, 245, 0.55), transparent 45%),
    radial-gradient(circle at 30% 75%, rgba(190, 220, 245, 0.5), transparent 45%),
    radial-gradient(circle at 75% 85%, rgba(255, 205, 225, 0.5), transparent 45%),
    linear-gradient(135deg, #eef6fc 0%, #fdeef4 100%);
  background-attachment: fixed;
}

/* Patrón de íconos de bebé repetido sobre todo el fondo */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/patron-bebe.svg");
  background-size: 300px 300px;
  background-repeat: repeat;
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
}

h1,h2,h3,h4 { font-family: "Poppins", "Inter", sans-serif; line-height: 1.15; }

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

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

.contenedor-l {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }

/* ---------- Badges y encabezados de sección ---------- */
.section-header { text-align: center; margin-bottom: 56px; }

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(78,195,247,.15), rgba(255,94,168,.15));
  border: 1px solid rgba(78,195,247,.35);
  color: var(--celeste-osc);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radio-pill);
  margin-bottom: 16px;
}

.section-titulo {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--texto);
  margin-bottom: 16px;
}

.section-subtitulo {
  max-width: 580px;
  margin: 0 auto;
  color: var(--texto-suave);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==========================================================================
   NAVEGACIÓN
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background .25s, box-shadow .25s;
}

.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--sombra-s);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo-img {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(232,62,145,.2));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--texto-suave);
  transition: color .15s;
}
.nav-links a:hover { color: var(--rosa-osc); }

.nav-link-empleados {
  color: var(--texto-suave) !important;
  font-size: .82rem !important;
  opacity: .7;
  border: 1px solid var(--gris-borde);
  padding: 5px 12px;
  border-radius: var(--radio-pill);
  transition: opacity .15s, border-color .15s !important;
}
.nav-link-empleados:hover {
  opacity: 1 !important;
  border-color: var(--celeste) !important;
  color: var(--celeste-osc) !important;
}

.btn-nav-cta {
  background: var(--grad-rosa);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  padding: 10px 22px;
  border-radius: var(--radio-pill);
  box-shadow: 0 8px 20px -6px rgba(232,62,145,.55);
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -6px rgba(232,62,145,.65); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--texto);
  border-radius: 2px;
  transition: all .2s;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 120px 24px 80px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.hero-aura {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .45;
  z-index: -1;
  pointer-events: none;
}
.hero-aura-1 { width: 500px; height: 500px; background: radial-gradient(circle, #7fd4ff, transparent 70%); top: -150px; left: -120px; }
.hero-aura-2 { width: 560px; height: 560px; background: radial-gradient(circle, #ffaad3, transparent 70%); bottom: -200px; right: -140px; }
.hero-aura-3 { width: 360px; height: 360px; background: radial-gradient(circle, #c4b5fd, transparent 70%); top: 30%; left: 40%; }

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(78,195,247,.18), rgba(255,94,168,.18));
  border: 1px solid rgba(255,94,168,.3);
  color: var(--rosa-osc);
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radio-pill);
  margin-bottom: 24px;
}

.hero-titulo {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-top: 56px;
  margin-bottom: 20px;
  color: var(--texto);
}

.hero-gradient {
  background: var(--grad-marca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitulo {
  font-size: 1.1rem;
  color: var(--texto-suave);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.btn-hero-primario {
  background: var(--grad-rosa);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radio-pill);
  box-shadow: 0 12px 30px -8px rgba(232,62,145,.6);
  transition: transform .15s, box-shadow .15s;
}
.btn-hero-primario:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -8px rgba(232,62,145,.7); }

.btn-hero-secundario {
  background: rgba(255,255,255,.8);
  color: var(--texto);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radio-pill);
  border: 1.5px solid var(--gris-borde);
  backdrop-filter: blur(8px);
  transition: background .15s, transform .15s;
}
.btn-hero-secundario:hover { background: #fff; transform: translateY(-2px); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.1rem; font-weight: 800; color: var(--texto); }
.stat-lbl { font-size: .75rem; color: var(--texto-suave); font-weight: 500; }
.stat-sep { width: 1px; height: 32px; background: var(--gris-borde); }

.stat-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: opacity .15s;
}
.stat-link:hover { opacity: .75; }
.stat-link .stat-num { color: #f59e0b; }
.stat-link .stat-lbl { color: var(--celeste-osc); font-weight: 600; }

.hero-imagen-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-imagen-placeholder {
  width: 100%;
  max-width: 420px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(78,195,247,.15), rgba(255,94,168,.15));
  border: 2px solid rgba(255,94,168,.2);
  overflow: hidden;
  box-shadow: var(--sombra-l);
}

/* Cuando haya imagen real */
.hero-imagen-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
}

/* ==========================================================================
   QUIÉNES SOMOS
   ========================================================================== */
.quienes { background: transparent; }

.quienes-texto {
  max-width: 820px;
  margin: 0 auto;
}
.quienes-texto > p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--texto-suave);
  margin-bottom: 20px;
  text-align: center;
}
.quienes-texto > p strong { color: var(--texto); }

.quienes-destacados {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}
.quienes-item {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--sombra-s);
  transition: transform .2s, box-shadow .2s;
}
.quienes-item:hover { transform: translateY(-4px); box-shadow: var(--sombra-m); }
.quienes-icono { font-size: 2.6rem; display: block; margin-bottom: 14px; }
.quienes-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--texto); }
.quienes-item p { font-size: .92rem; color: var(--texto-suave); line-height: 1.7; margin: 0; }

.quienes-cierre {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--texto);
  margin: 0;
}
.quienes-cierre strong {
  background: var(--grad-marca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 768px) {
  .quienes-destacados { grid-template-columns: 1fr; }
  .quienes-texto > p { text-align: left; }
}

/* ==========================================================================
   ¿POR QUÉ TODOBEBES?
   ========================================================================== */
.porque { background: rgba(255,255,255,0.55); }

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

.porque-card {
  background: var(--fondo);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 32px 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.porque-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-m); }

.porque-icono { font-size: 2.4rem; margin-bottom: 16px; }
.porque-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.porque-card p { font-size: .88rem; color: var(--texto-suave); line-height: 1.6; }

/* ==========================================================================
   PLANES
   ========================================================================== */
.planes { background: transparent; }

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

.planes-loading {
  grid-column: 1/-1;
  text-align: center;
  color: var(--texto-suave);
  padding: 40px;
  font-size: .95rem;
}

.planes-garantia {
  margin: 36px auto 0;
  max-width: 720px;
  text-align: center;
  background: linear-gradient(135deg, rgba(78,195,247,.1), rgba(255,94,168,.1));
  border: 1px solid rgba(255,94,168,.25);
  border-radius: var(--radio);
  padding: 20px 28px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--texto);
}
.planes-garantia strong { color: var(--rosa-osc); }

.plan-card {
  background: #fff;
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra-s);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-l); }

.plan-card-banda {
  height: 8px;
}

.plan-card-imagen {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(78,195,247,.12), rgba(255,94,168,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--texto-suave);
  overflow: hidden;
}
.plan-card-imagen img { width: 100%; height: 100%; object-fit: cover; }

.plan-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }

.plan-card-nombre {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--texto);
}

.plan-card-semanas {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--celeste-osc);
  background: rgba(78,195,247,.12);
  padding: 4px 12px;
  border-radius: var(--radio-pill);
  width: fit-content;
}

.plan-card-desc {
  font-size: .9rem;
  color: var(--texto-suave);
  line-height: 1.65;
  flex: 1;
}

.plan-card-incluye {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}

.plan-incluye-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .84rem;
  color: var(--texto);
}
.plan-incluye-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-card-footer {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--gris-borde);
}

.plan-card-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-precio {
  display: flex;
  flex-direction: column;
}
.plan-precio-lbl { font-size: .7rem; color: var(--texto-suave); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.plan-precio-val { font-size: 1.3rem; font-weight: 800; color: var(--texto); font-family: "Poppins", sans-serif; }
.plan-precio-gratis { font-size: 1.1rem; font-weight: 700; color: var(--celeste-osc); }

.plan-duracion {
  font-size: .78rem;
  color: var(--texto-suave);
  font-weight: 600;
  background: var(--fondo);
  border: 1px solid var(--gris-borde);
  padding: 4px 10px;
  border-radius: var(--radio-pill);
  white-space: nowrap;
}

.btn-plan-agendar {
  background: var(--grad-rosa);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 20px;
  border-radius: var(--radio-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 18px -6px rgba(232,62,145,.5);
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
  width: 100%;
}
.btn-plan-agendar:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -6px rgba(232,62,145,.6); }

/* ==========================================================================
   ¿CÓMO FUNCIONA?
   ========================================================================== */
.como-funciona { background: rgba(255,255,255,0.55); }

.pasos-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.paso {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 0 16px;
}

.paso-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-marca);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 24px -6px rgba(232,62,145,.45);
}

.paso h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.paso p { font-size: .86rem; color: var(--texto-suave); line-height: 1.65; }

.paso-linea {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--celeste), var(--rosa));
  margin-top: 28px;
  flex-shrink: 0;
}

/* ==========================================================================
   AGENDAMIENTO
   ========================================================================== */
.agendar {
  background: linear-gradient(160deg, #f0f7ff 0%, #fff5fb 100%);
}

.agendar-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.agendar-form-wrap {
  background: #fff;
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 36px;
  box-shadow: var(--sombra-m);
}

.form-agendar { display: flex; flex-direction: column; gap: 20px; }

.form-grupo { display: flex; flex-direction: column; gap: 7px; }
.form-grupo label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--texto-suave);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.req { color: var(--rosa-osc); }

.form-agendar input,
.form-agendar select {
  padding: 12px 14px;
  border: 1.5px solid var(--gris-borde);
  border-radius: var(--radio-sm);
  font-size: .95rem;
  font-family: inherit;
  color: var(--texto);
  background: #fafbff;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.form-agendar input:focus,
.form-agendar select:focus {
  outline: none;
  border-color: var(--celeste);
  box-shadow: 0 0 0 4px rgba(78,195,247,.18);
  background: #fff;
}
.form-agendar input::placeholder { color: #b0bec5; }

.form-ayuda {
  font-size: .74rem;
  color: var(--texto-suave);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}

.form-fila { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.disponibilidad-info {
  padding: 14px 16px;
  border-radius: var(--radio-sm);
  font-size: .86rem;
  line-height: 1.6;
  border: 1.5px solid;
}
.disponibilidad-info.libre {
  background: rgba(34,176,125,.08);
  border-color: rgba(34,176,125,.35);
  color: #1a7a5e;
}
.disponibilidad-info.ocupado {
  background: rgba(255,94,168,.08);
  border-color: rgba(255,94,168,.35);
  color: var(--rosa-osc);
}
.disponibilidad-info.bloqueado {
  background: rgba(100,116,139,.08);
  border-color: rgba(100,116,139,.3);
  color: var(--texto-suave);
}

.ag-error {
  background: #fff0f0;
  color: #c0392b;
  border: 1px solid #ffd5d5;
  border-radius: var(--radio-sm);
  padding: 12px 14px;
  font-size: .88rem;
}
.ag-exito {
  background: rgba(34,176,125,.1);
  color: #155e4a;
  border: 1px solid rgba(34,176,125,.35);
  border-radius: var(--radio-sm);
  padding: 14px 16px;
  font-size: .95rem;
  font-weight: 600;
  text-align: center;
}

.btn-agendar {
  background: var(--grad-rosa);
  color: #fff;
  border: none;
  border-radius: var(--radio-pill);
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 12px 28px -8px rgba(232,62,145,.6);
  transition: transform .15s, box-shadow .15s, opacity .15s;
}
.btn-agendar:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(232,62,145,.7); }
.btn-agendar:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Panel lateral */
.agendar-info { display: flex; flex-direction: column; gap: 16px; }

.info-card {
  background: #fff;
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 22px 24px;
  box-shadow: var(--sombra-s);
}
.info-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.info-card p { font-size: .88rem; color: var(--texto-suave); line-height: 1.7; }
.info-card a { color: var(--celeste-osc); font-weight: 600; }
.info-card a:hover { color: var(--rosa-osc); }

.info-card-tip { background: linear-gradient(135deg, rgba(78,195,247,.07), rgba(255,94,168,.07)); }
.info-card-tip ul { padding-left: 18px; }
.info-card-tip li { font-size: .86rem; color: var(--texto-suave); line-height: 1.7; margin-bottom: 4px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--texto);
  color: rgba(255,255,255,.85);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

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

.footer-marca p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 20px; }

.footer-telefonos { display: flex; flex-direction: column; gap: 8px; }
.footer-telefonos a { font-size: .9rem; color: rgba(255,255,255,.8); font-weight: 600; transition: color .15s; }
.footer-telefonos a:hover { color: var(--celeste); }

.footer-redes {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.red-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  transition: background .2s, color .2s, transform .15s;
}
.red-social:hover {
  color: #fff;
  transform: translateY(-3px);
}
.red-social:nth-child(1):hover { background: linear-gradient(135deg,#f9ce34,#ee2a7b,#6228d7); }
.red-social:nth-child(2):hover { background: #1877f2; }
.red-social:nth-child(3):hover { background: #000; }

.footer-links h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.7); transition: color .15s; }
.footer-links a:hover { color: var(--celeste); }

.footer-copy {
  text-align: center;
  padding: 20px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .porque-grid { grid-template-columns: repeat(2, 1fr); }
  .planes-grid { grid-template-columns: repeat(2, 1fr); }
  .agendar-layout { grid-template-columns: 1fr; }
  .agendar-info { display: grid; grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-marca { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    text-align: center;
    gap: 32px;
  }
  .hero-subtitulo { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-imagen-wrap { order: -1; }
  .hero-imagen-placeholder { max-width: 320px; }

  .nav-links, .btn-nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gris-borde);
    box-shadow: var(--sombra-m);
  }

  .porque-grid { grid-template-columns: 1fr; }
  .planes-grid { grid-template-columns: 1fr; }
  .pasos-grid { flex-direction: column; align-items: center; }
  .paso-linea { width: 2px; height: 40px; margin: 0 auto; }
  .form-fila { grid-template-columns: 1fr; }
  .agendar-info { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section-pad { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero-titulo { font-size: 2rem; }
  .agendar-form-wrap { padding: 24px 18px; }
}


/* ==========================================================================
   RESEÑAS
   ========================================================================== */
.resenas { background: rgba(255,255,255,0.55); }

.resenas-google-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--celeste-osc);
  text-decoration: none;
  transition: opacity .15s;
}
.resenas-google-link:hover { opacity: .75; }
.resenas-estrellas { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }

.resenas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.resena-card {
  background: var(--fondo);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 28px;
  box-shadow: var(--sombra-s);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s, box-shadow .2s;
}
.resena-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-m); }

.resena-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.resena-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-marca);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resena-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.resena-nombre { font-weight: 700; font-size: .95rem; color: var(--texto); }
.resena-fecha  { font-size: .75rem; color: var(--texto-suave); }

.resena-google-logo {
  height: 18px;
  width: auto;
  opacity: .7;
  flex-shrink: 0;
}

.resena-estrellas {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.resena-texto {
  font-size: .95rem;
  color: var(--texto);
  line-height: 1.7;
  font-style: italic;
}

/* Tarjeta CTA para dejar reseña */
.resena-card-cta {
  background: linear-gradient(135deg, rgba(78,195,247,.08), rgba(255,94,168,.08));
  border: 1.5px dashed rgba(255,94,168,.3);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.resena-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.resena-cta-icono { font-size: 2.4rem; }
.resena-cta-inner p { font-size: .95rem; color: var(--texto-suave); font-weight: 500; }

.btn-resena-cta {
  background: var(--grad-rosa);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  padding: 11px 22px;
  border-radius: var(--radio-pill);
  box-shadow: 0 8px 18px -6px rgba(232,62,145,.5);
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn-resena-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -6px rgba(232,62,145,.6); }

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

/* ==========================================================================
   MAPA
   ========================================================================== */
.mapa-seccion {
  background: #fff;
  padding: 96px 0 0;
}

.mapa-wrap {
  margin-top: 40px;
  width: 100%;
  line-height: 0;
  box-shadow: 0 -8px 24px -12px rgba(26,31,54,.15);
}
.mapa-wrap iframe {
  display: block;
  filter: grayscale(.15);
}

.info-mapa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--celeste-osc) !important;
  transition: opacity .15s;
}
.info-mapa-link:hover { opacity: .75; }

/* Botón "Confirmar por WhatsApp" en el mensaje de éxito de la landing */
.btn-confirmar-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff !important;
  font-weight: 700;
  font-size: .92rem;
  padding: 12px 24px;
  border-radius: var(--radio-pill);
  box-shadow: 0 8px 18px -6px rgba(37, 211, 102, .5);
  transition: transform .15s, box-shadow .15s;
}
.btn-confirmar-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(37, 211, 102, .6);
}
