/* ============================================================
   PORTADA — DIAZA  (diseño nuevo)
   Concepto: "clínica editorial". Composiciones asimétricas,
   tipografía grande, mucho aire y una sola sección oscura que
   ancla la página.

   Orden de carga: base.css → inicio.css → premium.css
   (premium.css aporta la paleta, las animaciones y los efectos)
   ============================================================ */

/* ---------- Botones de esta página ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-family: var(--fuente-texto); font-size: 15px; font-weight: 600;
  letter-spacing: 0.2px; line-height: 1;
  transition: transform 0.25s var(--curva), box-shadow 0.25s, background-color 0.25s, color 0.25s, border-color 0.25s;
}
.btn svg { width: 14px; height: 14px; fill: currentColor; transition: transform 0.25s; }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--verde-400); outline-offset: 3px; }

/* Sólido: el verde de la marca, para la acción principal */
.btn--solido {
  background: var(--verde-600); color: #fff;
  box-shadow: 0 16px 34px -14px rgba(7, 168, 49, 0.7);
}
.btn--solido:hover { transform: translateY(-2px); box-shadow: 0 22px 42px -14px rgba(7, 168, 49, 0.85); }

/* De línea: contorno, para la acción secundaria */
.btn--linea {
  border: 1px solid rgba(12, 46, 78, 0.25); color: var(--tinta-900); background: transparent;
}
.btn--linea:hover { background: var(--azul-50); border-color: rgba(12, 46, 78, 0.4); transform: translateY(-2px); }
.btn--oscuro { border-color: rgba(12, 46, 78, 0.22); }

/* Claro: sobre fotos oscuras */
.btn--claro {
  background: rgba(255, 255, 255, 0.94); color: var(--tinta-900);
  padding: 13px 24px; font-size: 14px;
}
.btn--claro:hover { background: #fff; transform: translateY(-2px); }

/* ============================================================
   1. HERO DIVIDIDO
   ============================================================ */
.portada-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(80% 60% at 100% 0%, var(--azul-50), transparent 60%),
    #fff;
  padding-block: clamp(48px, 7vw, 96px) clamp(60px, 8vw, 110px);
}
.portada-hero__reja {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}

.portada-hero__texto { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(16px, 1.8vw, 24px); }

.portada-hero__titulo {
  font-family: var(--fuente-titulos);
  font-size: clamp(2.5rem, 1.4rem + 4.2vw, 4.2rem);
  font-weight: 700; line-height: 1.03; letter-spacing: -0.04em;
  color: var(--tinta-900);
  text-wrap: balance;
}
/* La palabra clave, en verde y cursiva: contraste editorial */
.portada-hero__titulo em {
  font-style: italic; font-weight: 700;
  color: var(--verde-600);
}
.portada-hero__entrada {
  max-width: 52ch;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  line-height: 1.75; color: var(--tinta-600);
}
.portada-hero__acciones { display: flex; flex-wrap: wrap; gap: 12px; }

/* Cifras separadas por líneas finas */
.cifras {
  display: flex; flex-wrap: wrap; gap: clamp(18px, 3vw, 44px);
  margin: clamp(8px, 1.4vw, 16px) 0 0; padding-top: clamp(18px, 2vw, 26px);
  border-top: 1px solid rgba(12, 46, 78, 0.12); width: 100%;
}
.cifras__item { display: flex; flex-direction: column; gap: 2px; }
.cifras__item dt {
  font-family: var(--fuente-titulos);
  font-size: clamp(1.7rem, 1.3rem + 1.3vw, 2.4rem);
  font-weight: 700; line-height: 1; letter-spacing: -0.04em;
  color: var(--tinta-900); font-variant-numeric: tabular-nums;
}
.cifras__item dd {
  margin: 0; max-width: 20ch;
  font-size: 13px; line-height: 1.45; color: var(--tinta-400);
}

/* --- Columna de la foto --- */
.portada-hero__medio { position: relative; }
.portada-hero__foto {
  margin: 0; overflow: hidden;
  border-radius: 200px 200px 26px 26px;   /* arco arriba: gesto de marca */
  box-shadow: var(--sombra-xl);
}
.portada-hero__foto img {
  width: 100%; height: clamp(380px, 46vw, 560px);
  object-fit: cover; object-position: center;
}

/* Tarjeta de horarios flotando sobre la esquina inferior izquierda */
.tarjeta-horario {
  position: absolute; left: clamp(-10px, -1vw, 0px); bottom: clamp(-18px, -2vw, -10px);
  width: min(310px, 82%);
  padding: 20px 22px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--sombra-lg);
}
.tarjeta-horario__titulo {
  font-family: var(--fuente-titulos); font-size: 15px; font-weight: 700;
  letter-spacing: -0.01em; color: var(--tinta-900); margin-bottom: 12px;
}
.tarjeta-horario__lista { display: flex; flex-direction: column; gap: 9px; }
.tarjeta-horario__lista li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding-bottom: 9px; border-bottom: 1px dashed rgba(12, 46, 78, 0.18);
  font-size: 12.5px;
}
.tarjeta-horario__lista li:last-child { border-bottom: 0; padding-bottom: 0; }
.tarjeta-horario__lista span { color: var(--tinta-400); }
.tarjeta-horario__lista b { color: var(--tinta-900); font-weight: 600; white-space: nowrap; }
.tarjeta-horario__wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; padding: 11px 16px; border-radius: 999px;
  background: #25d366; color: #fff;
  font-size: 13.5px; font-weight: 600;
  transition: background-color 0.25s, transform 0.25s var(--curva);
}
.tarjeta-horario__wa svg { width: 14px; height: 14px; fill: currentColor; }
.tarjeta-horario__wa:hover { background: #128c7e; transform: translateY(-2px); }

/* ============================================================
   2. CINTA DE ESPECIALIDADES
   ============================================================ */
.cinta {
  overflow: hidden; padding-block: 0;
  background: var(--tinta-900);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}
.cinta__pista { display: flex; width: max-content; animation: cinta-corre 38s linear infinite; }
.cinta__grupo {
  display: flex; align-items: center; gap: clamp(24px, 3vw, 44px);
  padding: 18px clamp(12px, 1.6vw, 22px);
}
.cinta__grupo b {
  font-family: var(--fuente-titulos); font-size: clamp(15px, 1.1vw, 19px);
  font-weight: 700; letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}
.cinta__grupo i { color: var(--verde-400); font-style: normal; font-size: 12px; }
@keyframes cinta-corre { to { transform: translateX(-50%); } }
.cinta:hover .cinta__pista { animation-play-state: paused; }

/* ============================================================
   3. SERVICIOS EN RETÍCULA ASIMÉTRICA
   ============================================================ */
.servicios2 { background: #fff; }

/* Cabecera a dos columnas: título a la izquierda, texto a la derecha */
.bloque-cabecera {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 50px); align-items: end;
  margin-bottom: clamp(30px, 4vw, 52px);
}
.bloque-cabecera__titulo {
  font-family: var(--fuente-titulos);
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3.1rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.04em;
  color: var(--tinta-900);
}
.bloque-cabecera__texto {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  line-height: 1.75; color: var(--tinta-600);
  padding-bottom: 4px;
}

/* La retícula: la primera pieza ocupa dos columnas y dos filas */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
.bento__pieza {
  position: relative; overflow: hidden;
  border-radius: 24px; min-height: 300px;
  box-shadow: var(--sombra-md);
  isolation: isolate;
}
.bento__pieza--grande { grid-row: span 2; min-height: 560px; }

.bento__pieza img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  transition: transform 0.7s var(--curva);
}
/* Velo para que el texto se lea siempre */
.bento__pieza::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6, 24, 43, 0.12) 0%, rgba(6, 24, 43, 0.62) 52%, rgba(6, 24, 43, 0.9) 100%);
}
.bento__pieza:hover img { transform: scale(1.06); }

.bento__capa {
  position: relative; z-index: 1;
  height: 100%; display: flex; flex-direction: column; align-items: flex-start;
  justify-content: flex-end; gap: 10px;
  padding: clamp(22px, 2.4vw, 34px);
}
.bento__num {
  font-family: var(--fuente-titulos); font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--verde-400);
  font-variant-numeric: tabular-nums;
}
.bento__capa h3 {
  font-family: var(--fuente-titulos);
  font-size: clamp(1.25rem, 1rem + 0.9vw, 1.9rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.025em;
  color: #fff; text-wrap: balance;
}
.bento__capa p {
  max-width: 46ch; font-size: 15px; line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}
.bento__capa .btn { margin-top: 8px; }

/* ============================================================
   4. TESTIMONIOS: CITA PROTAGONISTA (sección oscura)
   ============================================================ */
.resenas {
  position: relative;
  background:
    radial-gradient(90% 80% at 15% 0%, rgba(97, 206, 112, 0.14), transparent 55%),
    linear-gradient(150deg, var(--azul-800) 0%, var(--azul-700) 55%, var(--azul-600) 100%);
}
.resenas__inner { position: relative; z-index: 2; text-align: center; }
.resenas__cabecera { max-width: 720px; margin: 0 auto clamp(30px, 4vw, 52px); }
.etiqueta-seccion--clara { color: var(--verde-400); }
.resenas__titulo {
  font-family: var(--fuente-titulos);
  font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem);
  font-weight: 700; line-height: 1.06; letter-spacing: -0.04em;
  color: #fff; text-wrap: balance;
}
.resenas__bajada {
  margin-top: 14px; font-size: 1.02rem; line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

/* La cita, en grande */
.cita {
  position: relative; max-width: 900px; margin: 0 auto;
  padding: clamp(10px, 2vw, 20px) 0;
}
.cita__comilla {
  width: clamp(34px, 4vw, 52px); height: auto; margin: 0 auto 18px;
  fill: var(--verde-400); opacity: 0.85;
}
.cita__texto {
  font-family: var(--fuente-titulos);
  font-size: clamp(1.3rem, 0.95rem + 1.5vw, 2.15rem);
  font-weight: 400; line-height: 1.35; letter-spacing: -0.02em;
  color: #fff; text-wrap: balance;
  transition: opacity 0.35s var(--curva), transform 0.35s var(--curva);
}
.cita__pie { margin-top: 22px; display: flex; flex-direction: column; gap: 2px; }
.cita__nombre {
  font-family: var(--fuente-texto); font-style: normal;
  font-size: 15.5px; font-weight: 700; color: #fff;
}
.cita__rol { font-size: 13px; color: var(--verde-400); }
/* Al cambiar de reseña, el texto se desvanece un instante */
.cita.cambiando .cita__texto,
.cita.cambiando .cita__pie { opacity: 0; transform: translateY(10px); }

/* Fila de caras: la activa crece y se enmarca en verde */
.resenas__caras {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: clamp(28px, 3.4vw, 44px);
}
.cara {
  width: 56px; height: 56px; padding: 0; border: 0; border-radius: 50%;
  overflow: hidden; cursor: pointer; background: none;
  opacity: 0.5; filter: grayscale(1);
  box-shadow: 0 0 0 2px transparent;
  transition: opacity 0.3s, filter 0.3s, transform 0.3s var(--curva), box-shadow 0.3s;
}
.cara img { width: 100%; height: 100%; object-fit: cover; }
.cara:hover { opacity: 0.85; filter: grayscale(0); transform: translateY(-3px); }
.cara.activa {
  opacity: 1; filter: grayscale(0); transform: scale(1.14);
  box-shadow: 0 0 0 2px var(--verde-400), 0 10px 22px -10px rgba(2, 12, 24, 0.7);
}
.cara:focus-visible { outline: 2px solid var(--verde-400); outline-offset: 3px; }

/* ============================================================
   5. NOVEDADES + VIDEOS
   ============================================================ */
.novedades2 { background: var(--azul-50); }
.novedades2__reja {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 64px); align-items: center;
}
.novedades2__texto { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.novedades2__titulo {
  font-family: var(--fuente-titulos);
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.9rem);
  font-weight: 700; line-height: 1.06; letter-spacing: -0.04em;
  color: var(--tinta-900);
}
.novedades2__frase { font-size: 1.05rem; font-weight: 700; line-height: 1.5; color: var(--tinta-900); }
.novedades2__parrafo { font-size: 1rem; line-height: 1.75; color: var(--tinta-600); }
.novedades2__texto .btn { margin-top: 8px; }

/* Los dos videos, escalonados: el segundo baja un poco */
.novedades2__videos { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(12px, 1.6vw, 20px); }
.novedades2__videos video {
  width: 100%; aspect-ratio: 9 / 12; object-fit: cover;
  background: #07203A; border-radius: 20px;
  box-shadow: var(--sombra-lg);
}
.novedades2__videos video:last-child { transform: translateY(clamp(16px, 3vw, 40px)); }

/* ============================================================
   6. PANEL DE RESERVA (oscuro)
   ============================================================ */
.reserva {
  position: relative; overflow: hidden;
  background:
    radial-gradient(70% 60% at 90% 10%, rgba(97, 206, 112, 0.12), transparent 55%),
    linear-gradient(160deg, var(--azul-900) 0%, var(--azul-800) 60%, var(--azul-700) 100%);
}
.reserva__reja {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 64px); align-items: start;
}
.reserva__texto { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.reserva__titulo {
  font-family: var(--fuente-titulos);
  font-size: clamp(1.8rem, 1.2rem + 2.2vw, 2.8rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.04em;
  color: #fff; text-wrap: balance;
}
.reserva__parrafo { font-size: 1.02rem; line-height: 1.7; color: rgba(255, 255, 255, 0.74); max-width: 46ch; }

.reserva__datos { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; width: 100%; }
.reserva__datos li { display: flex; align-items: flex-start; gap: 14px; }
.reserva__icono {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.reserva__icono svg { width: 17px; height: 17px; fill: var(--verde-400); }
.reserva__datos b {
  display: block; font-family: var(--fuente-texto);
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em; color: #fff; margin-bottom: 3px;
}
.reserva__datos span { font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, 0.68); }

/* Tarjeta blanca del formulario, sobre el fondo oscuro */
.tarjeta-form {
  background: #fff; border-radius: 24px;
  padding: clamp(24px, 2.6vw, 36px);
  box-shadow: var(--sombra-xl);
}
.tarjeta-form__texto {
  font-size: 15px; line-height: 1.6; color: var(--tinta-400);
  margin-bottom: 18px;
}

/* Campos claros (el formulario ya no va sobre azul) */
.form-cita { display: flex; flex-wrap: wrap; margin: 0 -7px; }
.form-cita__campo { padding: 0 7px; margin-bottom: 14px; }
.form-cita__campo--100 { width: 100%; }
.form-cita__campo--50 { width: 50%; }

.form-cita input,
.form-cita select,
.form-cita textarea {
  width: 100%; min-height: 48px;
  background: #F7FAFD;
  border: 1px solid #DCE6F0; border-radius: 12px;
  padding: 12px 15px;
  font-family: var(--fuente-texto); font-size: 15px;
  color: var(--tinta-900);
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}
.form-cita ::placeholder { color: #93A6B8; opacity: 1; }
.form-cita textarea { resize: vertical; min-height: auto; }
.form-cita input:focus,
.form-cita select:focus,
.form-cita textarea:focus {
  outline: none; background: #fff;
  border-color: var(--verde-400);
  box-shadow: 0 0 0 3px rgba(97, 206, 112, 0.22);
}

.form-cita__select { position: relative; }
.form-cita__select select { appearance: none; -webkit-appearance: none; padding-right: 36px; cursor: pointer; }
.form-cita__caret {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 11px; height: 11px; fill: #7D93A8; pointer-events: none;
}

.form-cita__enviar {
  width: 100%; border: 0; border-radius: 999px;
  padding: 16px 24px; cursor: pointer;
  background: var(--verde-600); color: #fff;
  font-family: var(--fuente-texto); font-size: 15px; font-weight: 600; line-height: 1;
  box-shadow: 0 16px 30px -14px rgba(7, 168, 49, 0.7);
  transition: transform 0.25s var(--curva), box-shadow 0.25s;
}
.form-cita__enviar:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -14px rgba(7, 168, 49, 0.85); }
.form-cita__enviar:active { transform: scale(0.98); }
.form-cita__enviar:focus-visible { outline: 2px solid var(--azul-500); outline-offset: 3px; }

.form-cita__mensaje-ok {
  width: 100%; padding: 0 7px; text-align: center;
  font-size: 14.5px; color: var(--verde-600); font-weight: 600;
}

/* Etiquetas solo para lectores de pantalla */
.solo-lector {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0;
}

/* ============================================================
   7. PREGUNTAS FRECUENTES (título que se queda fijo)
   ============================================================ */
.faq2 { background: #fff; }
.faq2__reja {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 70px); align-items: start;
}
.faq2__lado {
  position: sticky; top: 130px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}
.faq2__titulo {
  font-family: var(--fuente-titulos);
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.9rem);
  font-weight: 700; line-height: 1.06; letter-spacing: -0.04em;
  color: var(--tinta-900);
}
.faq2__ayuda { font-size: 1rem; line-height: 1.7; color: var(--tinta-400); max-width: 34ch; }

/* Acordeón limpio: solo líneas, sin cajas */
.acordeon { width: 100%; }
.acordeon__item { border-bottom: 1px solid rgba(12, 46, 78, 0.12); }
.acordeon__cabecera {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0; background: none; border: 0; cursor: pointer; text-align: left;
  transition: color 0.3s;
}
.acordeon__titulo {
  font-family: var(--fuente-titulos);
  font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.25rem);
  font-weight: 700; line-height: 1.35; letter-spacing: -0.02em;
  color: var(--tinta-900); transition: color 0.3s;
}
.acordeon__cabecera:hover .acordeon__titulo,
.acordeon__cabecera.abierto .acordeon__titulo { color: var(--verde-600); }
.acordeon__cabecera:focus-visible { outline: 2px solid var(--verde-400); outline-offset: 4px; }

/* Signo "+" que gira hasta ser "−" al abrir */
.acordeon__signo {
  position: relative; flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(12, 46, 78, 0.18);
  transition: background-color 0.3s, border-color 0.3s, transform 0.35s var(--curva);
}
.acordeon__signo::before, .acordeon__signo::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 13px; height: 2px; border-radius: 2px; background: var(--tinta-900);
  transform: translate(-50%, -50%); transition: transform 0.35s var(--curva), background-color 0.3s;
}
.acordeon__signo::after { transform: translate(-50%, -50%) rotate(90deg); }
.acordeon__cabecera.abierto .acordeon__signo {
  background: var(--verde-600); border-color: var(--verde-600); transform: rotate(180deg);
}
.acordeon__cabecera.abierto .acordeon__signo::before,
.acordeon__cabecera.abierto .acordeon__signo::after { background: #fff; }
.acordeon__cabecera.abierto .acordeon__signo::after { transform: translate(-50%, -50%) rotate(0deg); }

.acordeon__contenido { overflow: hidden; max-height: 0; transition: max-height 0.35s var(--curva); }
.acordeon__contenido-inner {
  padding: 0 0 26px; max-width: 62ch;
  font-size: 15.5px; line-height: 1.75; color: var(--tinta-600);
}

/* ============================================================
   8. MAPA A TODO EL ANCHO
   ============================================================ */
.mapa2 { position: relative; padding: 0; }
.mapa2 iframe {
  display: block; width: 100%; height: clamp(380px, 46vw, 520px);
  border: 0; filter: saturate(0.9);
}
.mapa2__tarjeta {
  position: absolute; top: 50%; left: max(24px, calc((100% - var(--ancho-contenido)) / 2));
  transform: translateY(-50%);
  width: min(360px, calc(100% - 48px));
  padding: 28px; border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--sombra-xl);
}
.mapa2__dir {
  margin: 4px 0 18px;
  font-family: var(--fuente-titulos); font-size: 1.05rem; font-weight: 700;
  line-height: 1.4; letter-spacing: -0.02em; color: var(--tinta-900);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .portada-hero__reja { grid-template-columns: 1fr; gap: clamp(40px, 6vw, 64px); }
  .portada-hero__foto { border-radius: 160px 160px 22px 22px; }
  .portada-hero__foto img { height: clamp(340px, 52vw, 460px); }
  .tarjeta-horario { left: auto; right: 0; bottom: -16px; }

  .bloque-cabecera { grid-template-columns: 1fr; align-items: start; }
  .bento { grid-template-columns: 1fr; }
  .bento__pieza--grande { grid-row: auto; min-height: 420px; }

  .novedades2__reja { grid-template-columns: 1fr; }
  .reserva__reja { grid-template-columns: 1fr; }
  .faq2__reja { grid-template-columns: 1fr; }
  .faq2__lado { position: static; }

  .mapa2__tarjeta { position: static; transform: none; width: auto; margin: -60px 24px 0; }
}

@media (max-width: 767px) {
  .portada-hero { padding-block: 36px 64px; }
  .portada-hero__foto { border-radius: 120px 120px 20px 20px; }
  .portada-hero__foto img { height: 320px; }
  .tarjeta-horario { position: static; width: 100%; margin-top: 16px; backdrop-filter: none; background: #fff; }
  .portada-hero__acciones { width: 100%; }
  .portada-hero__acciones .btn { width: 100%; }
  .cifras { gap: 16px 24px; }

  .cinta__grupo b { font-size: 14px; }
  .bento__pieza { min-height: 280px; }
  .bento__pieza--grande { min-height: 340px; }

  .novedades2__videos { grid-template-columns: 1fr; }
  .novedades2__videos video { aspect-ratio: 16 / 10; }
  .novedades2__videos video:last-child { transform: none; }

  .form-cita__campo--50 { width: 100%; }
  .acordeon__cabecera { padding: 18px 0; gap: 14px; }
  .acordeon__signo { width: 30px; height: 30px; }

  .mapa2__tarjeta { margin: -40px 16px 0; padding: 22px; }
}
