:root {
  --ink: #692611;
  --ink-strong: #0d1725;
  --body: #4a5866;
  --muted: #6d7a88;
  --line: #d5dde5;
  --line-soft: #e6ecf1;
  --white: #ffffff;
  --paper: #fbfcfd;
  --tint: #f2f6f9;
  --tint-2: #e7eef4;
  --blue: #327eb8;
  --blue-dark: #2376b6;
  --blue-deep: #0062b3;
  --blue-soft: #dbe7f0;
  --gold: #b98a35;
  --contenedor: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.bloqueado {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink-strong);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

strong {
  color: var(--ink-strong);
  font-weight: 600;
}

::selection {
  background: var(--blue-soft);
  color: var(--ink-strong);
}

.contenedor {
  width: min(100% - 40px, var(--contenedor));
  margin-inline: auto;
}

.salto {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  padding: 12px 18px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.85rem;
}

.salto:focus {
  left: 12px;
  top: 12px;
}

.velo {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(13, 23, 37, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.velo.abierto {
  opacity: 1;
  visibility: visible;
}

.cabecera {
  position: sticky;
  top: 0;
  z-index: 120;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.cabecera.fija {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(14, 52, 84, 0.06);
}

.barra-superior {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 74px;
}

.logotipo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}

.emblema-logo {
  border-radius: 7%;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 0.35s var(--ease-out), background 0.35s var(--ease);
}

.logotipo:hover .emblema-logo {
  transform: translateY(-2px);
  background: var(--blue-dark);
}

.nombre-logo {
  color: var(--ink-strong);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.navegacion {
  display: flex;
  align-items: center;
  gap: 4px;
}

.enlace {
  position: relative;
  padding: 9px 12px;
  color: var(--body);
  font-size: 0.95rem;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease-out);
}

.enlace::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease-out);
}

.enlace:hover {
  color: var(--ink-strong);
}

.enlace:hover::after,
.enlace.activo::after {
  transform: scaleX(1);
}

.enlace.activo {
  color: var(--blue);
  font-weight: 600;
}

.telefono-cabecera {
  color: var(--ink-strong);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}

.telefono-cabecera:hover {
  color: var(--blue);
}

.boton-menu {
  display: none;
  align-items: center;
  gap: 9px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-strong);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease);
}

.boton-menu i {
  width: 18px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.boton-menu:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.menu-lateral {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 130;
  width: min(420px, 88vw);
  display: flex;
  flex-direction: column;
  padding: 26px 0 32px;
  background: var(--white);
  border-left: 1px solid var(--line);
  transform: translateX(101%);
  transition: transform 0.52s var(--ease-out);
}

.menu-lateral.abierto {
  transform: none;
  visibility: visible;
}

.menu-lateral {
  visibility: hidden;
  transition: transform 0.52s var(--ease-out), visibility 0.52s var(--ease-out);
}

.menu-lateral .navegacion {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.menu-lateral .enlace {
  padding: 18px 26px;
  border-top: 1px solid var(--line-soft);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ink-strong);
  transition: padding-left 0.3s var(--ease-out), background 0.3s var(--ease), color 0.3s var(--ease);
}

.menu-lateral .enlace:last-of-type {
  border-bottom: 1px solid var(--line-soft);
}

.menu-lateral .enlace::after {
  display: none;
}

.menu-lateral .enlace:hover,
.menu-lateral .enlace.activo {
  padding-left: 38px;
  background: var(--tint);
  color: var(--blue);
}

.pie-lateral {
  margin-top: auto;
  padding: 24px 26px 0;
  display: grid;
  gap: 12px;
}

.boton {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink-strong);
  background: transparent;
  color: var(--ink-strong);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.26s var(--ease-out), box-shadow 0.26s var(--ease), background 0.26s var(--ease),
    color 0.26s var(--ease), border-color 0.26s var(--ease);
}

.boton svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.boton:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--blue-soft);
}

.principal {
  border-radius: 5px;
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.principal:hover {
  border-radius: 5px;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 6px 6px 0 var(--blue-soft);
}

.claro {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue-deep);
}

.claro:hover {
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.28);
}

.contorno {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.contorno:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.16);
}

.secundario {
  border-color: var(--line);
  color: var(--ink-strong);
  background: var(--white);
}

.secundario:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.pequeno {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.antetitulo {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portada {
  position: relative;
  padding: clamp(38px, 4vw, 60px) 0 clamp(46px, 5vw, 72px);
  background: linear-gradient(178deg, var(--tint-2) 0%, var(--tint) 52%, var(--paper) 100%);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.portada-grilla {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: clamp(30px, 4vw, 62px);
  align-items: center;
}

.titulo-portada {
  font-size: clamp(2.35rem, 1.2rem + 3.9vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.032em;
}

.palabra {
  display: inline-block;
  animation: wordIn 0.78s var(--ease-out) both;
  animation-delay: calc(var(--palabra) * 52ms);
  transition: color 0.24s var(--ease), transform 0.24s var(--ease-out);
}

.palabra:hover {
  color: var(--blue);
  transform: translateY(-4px);
}

@keyframes wordIn {
  from {
    opacity: 0;
    transform: translateY(0.5em);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.texto-portada {
  margin-top: 22px;
  max-width: 54ch;
  font-size: 1.08rem;
}

.acciones-portada {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.prueba-portada {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.valoracion {
  display: inline-flex;
  gap: 3px;
  color: var(--gold);
}

.valoracion svg {
  width: 17px;
  height: 17px;
}

.imagen-portada {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.imagen-portada img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.imagen-portada:hover img {
  transform: scale(1.03);
}

.carrusel {
  overflow: hidden;
  background: var(--blue-deep);
  color: var(--white);
  border-block: 1px solid var(--blue-deep);
}

.fila-carrusel {
  display: flex;
  width: max-content;
  padding: 13px 0;
  animation: marquee 42s linear infinite;
}

.fila-carrusel span {
  display: inline-flex;
  align-items: center;
  padding: 0 30px;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fila-carrusel span::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 30px;
  background: rgba(255, 255, 255, 0.4);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.carrusel:hover .fila-carrusel {
  animation-play-state: paused;
}

.encabezado-pagina {
  padding: clamp(34px, 3.4vw, 52px) 0 clamp(38px, 4vw, 58px);
  background: var(--tint);
  border-bottom: 1px solid var(--line-soft);
  animation: pageIn 0.5s var(--ease-out) both;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.migas {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.86rem;
}

.migas a {
  transition: color 0.24s var(--ease);
}

.migas a:hover {
  color: var(--blue);
}

.grilla-pagina {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(22px, 3vw, 54px);
  align-items: end;
}

.titulo-pagina {
  font-size: clamp(2.1rem, 1.2rem + 3vw, 3.4rem);
  line-height: 1.06;
}

.texto-pagina {
  font-size: 1.04rem;
}

.seccion {
  padding: clamp(52px, 5.6vw, 92px) 0;
  animation: pageIn 0.55s var(--ease-out) both;
}

.clara {
  background: var(--tint);
  border-block: 1px solid var(--line-soft);
}

.oscura {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.78);
}

.oscura h2,
.oscura h3,
.oscura strong {
  color: var(--white);
}

.oscura .antetitulo {
  color: rgba(255, 255, 255, 0.62);
}

.cabecera-seccion {
  max-width: 60ch;
  margin-bottom: clamp(30px, 3.4vw, 50px);
}

.titulo-seccion {
  font-size: clamp(1.72rem, 1.1rem + 1.9vw, 2.62rem);
}

.texto-seccion {
  margin-top: 16px;
  font-size: 1.03rem;
}

.grilla {
  display: grid;
  gap: 20px;
}

.dos-columnas {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tres-columnas {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cuatro-columnas {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tarjeta {
  position: relative;
  padding: 28px 26px 30px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.2s var(--ease-out), box-shadow 0.34s var(--ease), border-color 0.34s var(--ease);
}

.tarjeta::before {
  content: "";
  position: absolute;
  left: var(--px, 50%);
  top: var(--py, 50%);
  width: 230px;
  height: 230px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--blue-soft) 0%, rgba(219, 231, 240, 0) 68%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.tarjeta::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease-out);
}

.tarjeta:hover {
  border-color: var(--blue);
  box-shadow: 8px 8px 0 var(--blue-soft);
}

.tarjeta:hover::before {
  opacity: 0.85;
}

.tarjeta:hover::after {
  transform: scaleY(1);
}

.tarjeta > * {
  position: relative;
}

.numero-tarjeta {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.tarjeta:hover .numero-tarjeta {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.titulo-tarjeta {
  font-size: 1.16rem;
  letter-spacing: -0.018em;
}

.texto-tarjeta {
  margin-top: 10px;
  font-size: 0.97rem;
}

.lista-tarjeta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 9px;
  font-size: 0.94rem;
}

.lista-tarjeta li {
  position: relative;
  padding-left: 18px;
}

.lista-tarjeta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--blue);
}

a.tarjeta {
  display: block;
  color: inherit;
}

.bloque-estadisticas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.estadistica {
  padding: 28px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.32s var(--ease);
}

.estadistica:first-child {
  border-left: 0;
}

.estadistica:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cifra-estadistica {
  color: var(--white);
  font-size: clamp(2rem, 1.4rem + 1.6vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.texto-estadistica {
  margin-top: 9px;
  font-size: 0.92rem;
}

.marco-foto {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.marco-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

.marco-foto:hover img {
  transform: scale(1.04);
}

.marco-foto figcaption {
  padding: 13px 16px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.87rem;
}

.alto img {
  aspect-ratio: 4 / 5;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dividido {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
}

.invertido .media-dividido {
  order: 2;
}

.lista-check {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.lista-check li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.98rem;
}

.lista-check li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.lista-check svg {
  width: 22px;
  height: 22px;
  margin-top: 3px;
  color: var(--blue);
}

.lista-check strong {
  display: block;
}

.comparador {
  display: grid;
  gap: 16px;
}

.visor-comparador {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.visor-comparador img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-comparador {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.barra-comparador {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 2px;
  background: var(--white);
  transform: translateX(-1px);
}

.control-comparador {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  background: var(--white);
  color: var(--blue-deep);
  box-shadow: 0 4px 14px rgba(14, 52, 84, 0.24);
}

.control-comparador svg {
  width: 22px;
  height: 22px;
}

.etiqueta-comparador {
  position: absolute;
  bottom: 14px;
  z-index: 4;
  padding: 6px 12px;
  background: rgba(13, 23, 37, 0.76);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.antes {
  left: 14px;
}

.despues {
  right: 14px;
}

.descripcion-comparador {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonio {
  padding: 28px 26px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.3s var(--ease-out), box-shadow 0.32s var(--ease), border-color 0.32s var(--ease);
}

.testimonio:hover {
  transform: translate(-2px, -2px);
  border-color: var(--blue);
  box-shadow: 8px 8px 0 var(--blue-soft);
}

.estrellas-testimonio {
  display: inline-flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}

.estrellas-testimonio svg {
  width: 16px;
  height: 16px;
}

.texto-testimonio {
  font-size: 1rem;
}

.autor-testimonio {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.88rem;
}

.bloque-preguntas {
  border-top: 1px solid var(--line);
}

.item-pregunta {
  border-bottom: 1px solid var(--line);
}

.boton-pregunta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  border: 0;
  background: transparent;
  color: var(--ink-strong);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: padding-left 0.3s var(--ease-out), color 0.3s var(--ease);
}

.boton-pregunta:hover {
  padding-left: 16px;
  color: var(--blue);
}

.icono-pregunta {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.icono-pregunta::before,
.icono-pregunta::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--blue);
  transition: transform 0.34s var(--ease-out);
}

.icono-pregunta::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.icono-pregunta::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.item-pregunta.abierto .icono-pregunta::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.respuesta-pregunta {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.46s var(--ease-out), opacity 0.3s var(--ease);
}

.item-pregunta.abierto .respuesta-pregunta {
  max-height: 460px;
  opacity: 1;
}

.respuesta-pregunta p {
  padding: 0 4px 24px;
  max-width: 78ch;
  font-size: 0.99rem;
}

.contenedor-tabla {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

.tabla {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.tabla th,
.tabla td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}

.tabla thead th {
  background: var(--tint-2);
  color: var(--ink-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tabla tbody tr {
  transition: background 0.26s var(--ease);
}

.tabla tbody tr:hover {
  background: var(--tint);
}

.tabla tbody tr:last-child td {
  border-bottom: 0;
}

.bloque-info {
  border-top: 1px solid var(--line);
}

.fila-info {
  display: grid;
  grid-template-columns: 26px 190px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease-out), background 0.3s var(--ease);
}

.fila-info:hover {
  padding-left: 16px;
  background: var(--tint);
}

.fila-info svg {
  width: 22px;
  height: 22px;
  margin-top: 3px;
  color: var(--blue);
}

.etiqueta-info {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.valor-info {
  color: var(--ink-strong);
  font-size: 1.02rem;
}

.valor-info a {
  transition: color 0.24s var(--ease);
}

.valor-info a:hover {
  color: var(--blue);
}

.nota-info {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.mapa {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--tint);
}

.mapa iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.grupo-etiquetas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.etiqueta {
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-strong);
  font-size: 0.88rem;
  transition: border-color 0.26s var(--ease), color 0.26s var(--ease), transform 0.26s var(--ease-out);
}

.etiqueta:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.franja {
  padding: clamp(48px, 5vw, 76px) 0;
  background: var(--blue);
  color: rgba(255, 255, 255, 0.86);
}

.grilla-franja {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 30px;
  align-items: center;
}

.titulo-franja {
  color: var(--white);
  font-size: clamp(1.6rem, 1.1rem + 1.5vw, 2.3rem);
}

.texto-franja {
  margin-top: 14px;
  max-width: 58ch;
}

.acciones-franja {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.navegacion-seccion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.boton-seccion {
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.32s var(--ease-out), background 0.32s var(--ease);
}

.boton-seccion span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.boton-seccion strong {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.28s var(--ease);
}

.boton-seccion:hover {
  padding-left: 20px;
  background: var(--tint);
}

.boton-seccion:hover strong {
  color: var(--blue);
}

.siguiente {
  text-align: right;
  border-left: 1px solid var(--line);
}

.siguiente:hover {
  padding-left: 4px;
  padding-right: 20px;
}

.pie-pagina {
  padding: clamp(46px, 4.6vw, 70px) 0 34px;
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.grilla-pie {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}

.logo-pie {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
}

.logo-pie .emblema-logo {
  background: var(--white);
  color: var(--blue-deep);
}

.texto-pie {
  margin-top: 16px;
  max-width: 40ch;
}

.titulo-pie {
  color: var(--white);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lista-pie {
  display: grid;
  gap: 11px;
  margin-top: 16px;
}

.lista-pie a {
  transition: color 0.24s var(--ease), padding-left 0.28s var(--ease-out);
}

.lista-pie a:hover {
  padding-left: 6px;
  color: var(--white);
}

.legal-pie {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.boton-whatsapp {
  border-radius: 5px;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(14, 52, 84, 0.26);
  transition: transform 0.28s var(--ease-out), background 0.28s var(--ease);
}

.boton-whatsapp svg {
  width: 21px;
  height: 21px;
}

.boton-whatsapp:hover {
  transform: translateY(-3px);
  background: var(--blue-dark);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease-out);
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .navegacion,
  .telefono-cabecera,
  .cabecera .boton.pequeno {
    display: none;
  }
  .menu-lateral .navegacion {
    display: flex;
  }
  .boton-menu {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
  }
  .barra-superior {
    gap: 12px;
    height: 64px;
  }
  .portada {
    padding: 28px 0 36px;
  }
  .portada-grilla,
  .grilla-pagina,
  .dividido {
    grid-template-columns: 1fr;
  }
  .titulo-portada {
    font-size: clamp(1.9rem, 6vw, 2.55rem);
    line-height: 1.08;
  }
  .titulo-pagina {
    font-size: clamp(1.85rem, 5.5vw, 2.4rem);
  }
  .imagen-portada img {
    min-height: 280px;
    max-height: 420px;
  }
  .invertido .media-dividido {
    order: 0;
  }
  .cuatro-columnas,
  .tres-columnas,
  .galeria {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bloque-estadisticas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .estadistica:nth-child(3) {
    border-left: 0;
  }
  .grilla-franja {
    grid-template-columns: 1fr;
  }
  .seccion {
    padding: 48px 0;
  }
  .grilla-pie {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 700px) {
  html {
    overflow-x: hidden;
  }
  body {
    font-size: 15.5px;
    line-height: 1.6;
  }
  .contenedor {
    width: min(100% - 32px, var(--contenedor));
  }
  .barra-superior {
    height: 60px;
    gap: 10px;
  }
  .logotipo {
    gap: 9px;
  }
  .emblema-logo {
    width: 36px;
    height: 36px;
    font-size: 0.72rem;
  }
  .nombre-logo {
    font-size: 0.98rem;
  }
  .antetitulo {
    margin-bottom: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }
  .portada {
    padding: 22px 0 28px;
  }
  .portada-grilla {
    gap: 22px;
  }
  .titulo-portada {
    font-size: clamp(1.65rem, 7.2vw, 2.1rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .palabra {
    line-height: 1.12;
  }
  .texto-portada {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.6;
  }
  .acciones-portada {
    margin-top: 18px;
    gap: 10px;
  }
  .acciones-portada .boton {
    width: 100%;
  }
  .imagen-portada img {
    min-height: 220px;
    max-height: 300px;
  }
  .encabezado-pagina {
    padding: 22px 0 26px;
  }
  .migas {
    margin-bottom: 12px;
    font-size: 0.82rem;
  }
  .grilla-pagina {
    gap: 12px;
  }
  .texto-pagina {
    font-size: 0.98rem;
    line-height: 1.55;
  }
  .cabecera-seccion {
    margin-bottom: 22px;
  }
  .titulo-seccion {
    font-size: clamp(1.45rem, 5.5vw, 1.7rem);
    line-height: 1.18;
  }
  .texto-seccion {
    margin-top: 10px;
    font-size: 0.96rem;
  }
  .seccion {
    padding: 36px 0;
  }
  .grilla {
    gap: 14px;
  }
  .tarjeta {
    padding: 20px 18px 22px;
    overflow: hidden;
  }
  .numero-tarjeta {
    width: auto;
    min-width: 32px;
    height: auto;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    margin-bottom: 14px;
    font-size: 0.78rem;
    line-height: 1;
    white-space: nowrap;
    max-width: 100%;
  }
  .titulo-tarjeta {
    font-size: 1.05rem;
  }
  .texto-tarjeta {
    font-size: 0.93rem;
  }
  .lista-tarjeta {
    margin-top: 14px;
    padding-top: 14px;
    gap: 7px;
    font-size: 0.9rem;
  }
  .dos-columnas,
  .tres-columnas,
  .cuatro-columnas,
  .galeria,
  .bloque-estadisticas,
  .navegacion-seccion,
  .grilla-pie {
    grid-template-columns: 1fr;
  }
  .galeria {
    gap: 14px;
  }
  .dividido {
    gap: 22px;
  }
  .marco-foto figcaption {
    padding: 10px 14px;
    font-size: 0.82rem;
  }
  .lista-check {
    gap: 0;
    margin-top: 18px;
  }
  .lista-check li {
    grid-template-columns: 22px 1fr;
    gap: 10px;
    padding: 14px 0;
    font-size: 0.93rem;
  }
  .grupo-etiquetas {
    gap: 8px;
    margin-top: 18px;
  }
  .etiqueta {
    padding: 7px 12px;
    font-size: 0.82rem;
  }
  .contenedor-tabla {
    margin: 0;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 5px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tabla {
    width: 100%;
    table-layout: fixed;
  }
  .tabla th,
  .tabla td {
    padding: 10px 10px;
    font-size: 0.82rem;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
    vertical-align: top;
  }
  .tabla th:nth-child(1),
  .tabla td:nth-child(1) {
    width: 32%;
  }
  .tabla th:nth-child(2),
  .tabla td:nth-child(2) {
    width: 26%;
  }
  .tabla th:nth-child(3),
  .tabla td:nth-child(3) {
    width: 42%;
  }
  .tabla thead th {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    line-height: 1.3;
    padding: 10px 10px;
    white-space: normal;
  }
  .bloque-info {
    margin-top: 6px;
  }
  .fila-info {
    grid-template-columns: 22px 1fr;
    gap: 10px;
    padding: 16px 0;
  }
  .fila-info svg {
    width: 20px;
    height: 20px;
    margin-top: 2px;
  }
  .etiqueta-info {
    font-size: 0.72rem;
  }
  .valor-info {
    font-size: 0.96rem;
    grid-column: 2;
  }
  .nota-info {
    font-size: 0.85rem;
  }
  .mapa iframe {
    height: 300px;
  }
  .franja {
    padding: 36px 0;
  }
  .grilla-franja {
    gap: 18px;
  }
  .titulo-franja {
    font-size: clamp(1.35rem, 5vw, 1.6rem);
    line-height: 1.2;
  }
  .texto-franja {
    margin-top: 10px;
    font-size: 0.94rem;
  }
  .acciones-franja {
    gap: 10px;
  }
  .acciones-franja .boton {
    width: 100%;
  }
  .testimonio {
    padding: 20px 18px;
  }
  .bloque-preguntas {
    margin-top: 8px;
  }
  .boton-pregunta {
    padding: 18px 0;
    font-size: 0.98rem;
    gap: 14px;
  }
  .respuesta-pregunta p {
    font-size: 0.93rem;
    padding-bottom: 18px;
  }
  .visor-comparador {
    aspect-ratio: 4 / 3;
  }
  .etiqueta-comparador {
    font-size: 0.68rem;
    padding: 5px 10px;
    bottom: 10px;
  }
  .antes {
    left: 10px;
  }
  .despues {
    right: 10px;
  }
  .estadistica {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 22px 18px;
  }
  .estadistica:first-child {
    border-top: 0;
  }
  .cifra-estadistica {
    font-size: 2rem;
  }
  .boton-seccion {
    padding: 22px 0;
  }
  .boton-seccion strong {
    font-size: 1.05rem;
  }
  .siguiente {
    text-align: left;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .siguiente:hover {
    padding-left: 12px;
    padding-right: 0;
  }
  .pie-pagina {
    padding: 36px 0 28px;
  }
  .grilla-pie {
    gap: 28px;
  }
  .legal-pie {
    margin-top: 28px;
    padding-top: 18px;
    font-size: 0.82rem;
  }
  .alto img {
    aspect-ratio: 1 / 1;
  }
  .boton {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.92rem;
  }
  .boton-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 11px 14px;
    gap: 8px;
    font-size: 0.88rem;
  }
  .boton-whatsapp svg {
    width: 19px;
    height: 19px;
  }
  .menu-lateral {
    width: min(84vw, 320px);
    padding-top: 14px;
  }
  .menu-lateral a {
    padding: 16px 20px;
    font-size: 0.98rem;
  }
  .menu-lateral a.boton {
    margin: 18px 20px 0;
    width: calc(100% - 40px);
  }
  .carrusel {
    border-block-width: 1px;
  }
  .fila-carrusel {
    padding: 11px 0;
  }
  .fila-carrusel span {
    padding: 0 18px;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }
  .fila-carrusel span::after {
    margin-left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .palabra,
  .seccion,
  .encabezado-pagina {
    animation: none;
  }

  .fila-carrusel {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.imagen-portada {
  border-radius: 5px;
  overflow: hidden;
}
.tarjeta:nth-child(even) {
  border-radius: 5px;
}
.marco-foto {
  border-radius: 5px;
  overflow: hidden;
}
.marco-foto.alto:nth-child(even) {
  border-radius: 0;
}
.testimonio:nth-child(odd) {
  border-radius: 5px;
}
.visor-comparador {
  border-radius: 5px;
}
.contenedor-tabla {
  border-radius: 5px;
  overflow: hidden;
}
.mapa {
  border-radius: 5px;
  overflow: hidden;
}
.etiqueta:nth-child(odd) {
  border-radius: 5px;
}
.bloque-estadisticas {
  border-radius: 5px;
  overflow: hidden;
}
.boton-whatsapp {
  border-radius: 5px;
}
.boton-menu span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
@media (max-width: 1020px) {
  .menu-lateral .contenedor {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 6px 0 0;
  }
  .menu-lateral a {
    display: block;
    width: 100%;
    padding: 18px 24px;
    border-top: 1px solid var(--line-soft);
    color: var(--ink-strong);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.2;
    transition: background 0.24s var(--ease), color 0.24s var(--ease), padding-left 0.24s var(--ease-out);
  }
  .menu-lateral a:last-of-type {
    border-bottom: 1px solid var(--line-soft);
  }
  .menu-lateral a:hover {
    background: var(--tint);
    color: var(--blue);
    padding-left: 30px;
  }
  .menu-lateral a.boton {
    margin: 22px 24px 0;
    width: calc(100% - 48px);
    padding: 14px 18px;
    border: 0;
    text-align: center;
    font-size: 0.95rem;
    color: var(--white);
  }
  .menu-lateral a.boton:hover {
    padding-left: 18px;
  }
}
@media (max-width: 480px) {
  .contenedor {
    width: min(100% - 28px, var(--contenedor));
  }
  .titulo-portada {
    font-size: clamp(1.55rem, 7.5vw, 1.95rem);
  }
  .titulo-pagina {
    font-size: 1.65rem;
  }
  .boton {
    width: 100%;
  }
  .acciones-portada .boton,
  .acciones-franja .boton,
  .franja .boton {
    width: 100%;
  }
  .tabla th,
  .tabla td {
    padding: 8px 8px;
    font-size: 0.78rem;
    line-height: 1.35;
  }
  .tabla thead th {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }
  .numero-tarjeta {
    min-width: 28px;
    min-height: 28px;
    padding: 3px 8px;
    font-size: 0.74rem;
  }
  .mapa iframe {
    height: 260px;
  }
}
@media (max-width: 380px) {
  .contenedor {
    width: min(100% - 24px, var(--contenedor));
  }
  .barra-superior {
    height: 56px;
  }
  .nombre-logo {
    font-size: 0.9rem;
  }
  .emblema-logo {
    width: 34px;
    height: 34px;
  }
  .titulo-portada {
    font-size: 1.5rem;
  }
  .titulo-seccion {
    font-size: 1.35rem;
  }
  .boton-whatsapp {
    padding: 10px 12px;
    font-size: 0.84rem;
    bottom: 12px;
    right: 12px;
  }
  .menu-lateral {
    width: min(86vw, 300px);
  }
}

