/* ====== ÁMBITO PÁGINA ====== */
body.page-infra {}

/* ====== HERO: “Tecnología y seguridad” ====== */
#infra-hero .hero__inner { display: block; } /* solo 1 columna (sin imagen lateral) */

#infra-hero .infra-bullets-wrap {
  max-width: 34rem;
  margin: 1rem 0 2rem 0;
}
@media (max-width: 700px) {
  #infra-hero .infra-bullets-wrap { max-width: none; }
}

/* Bullets en columnas (primero llena la izquierda y luego la derecha) */
#infra-hero .bullets {
  display: block !important;    /* anula el grid global de .bullets */
  columns: 2;
  -webkit-columns: 2;
  column-gap: 1rem;
  list-style: none;
  margin: 1rem 0 0 0;
  padding: 0;
}
#infra-hero .bullets li {
  break-inside: avoid-column;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: .35rem;
}
#infra-hero .bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .4em;          /* centrado óptico */
  width: .5em;
  height: .5em;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: .9;
}

/* Enlaces del hero */
#infra-hero a { color: var(--primary-color); text-decoration: none; }
#infra-hero a:hover { text-decoration: underline; }

/* ====== LISTADO / COPIAS: ajustes de texto ====== */
@media (min-width: 900px){
  #infra-backups .section-lead { max-width: none; }
  #infra-backups h2 { white-space: nowrap; }
}
#infra-backups .section-lead { margin-left: .5rem; }
#infra-backups ul { margin-left: 2rem; padding-left: 0; }
#infra-backups ul li { margin-bottom: .6rem; line-height: 1.5; text-indent: .25rem; }

/* ====== GRID DE FICHAS (común a todas las secciones) ====== */
.page-infra .cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) {
  .page-infra .cards-grid { grid-template-columns: 1fr; }
}
.page-infra .cards-grid > .card {
  transition: transform .18s ease, box-shadow .18s ease;
  will-change: transform;
}
.page-infra .cards-grid > .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

/* Layout de las tarjetas con icono a la izquierda */
.card--icon {
  display: grid;
  grid-template-columns: 160px 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 16px;
  min-height: 170px;
}
.card--icon .icon-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}
.card--icon .icon-cell img {
  max-height: 130px;
  max-width: 120px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ====== BLOQUE DE SOPORTE (animación icono) ====== */
#infra-support img { transition: transform .4s ease, opacity .4s ease; }
#infra-support .reveal.is-visible img { transform: scale(1.05); opacity: 1; }