/* =========================
   ESTILOS GENERALES
========================= */
body {
  background: #faf8f4;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: #003057;
}

.catalogo-wrapper {
  max-width: 1280px;
  margin: auto;
  padding: 40px 20px;
}

/* =========================
   CABECERA
========================= */
.catalogo-header {
  text-align: center;
  margin-bottom: 40px;
}

.catalogo-header h1,
.catalogo-header h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.catalogo-header h1 span,
.catalogo-header h2 span {
  color: #0079c2;
}

.catalogo-header p {
  max-width: 900px;
  margin: auto;
  color: #555;
  font-size: 1.05rem;
}

/* =========================
   FILTROS (GRID REAL)
========================= */
.catalogo-filtros {
  background: #ffffff;
  padding: 26px 30px;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);

  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
}

.filtro-grupo strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: #003057;
}

.catalogo-filtros label {
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  margin-bottom: 6px;
}

.catalogo-filtros input[type="radio"] {
  accent-color: #0079c2;
}

/* =========================
   SECCIONES
========================= */
.catalogo-seccion {
  margin-bottom: 70px;
}

.catalogo-seccion h2 {
  font-weight: 700;
  margin-bottom: 25px;
}

/* =========================
   TARJETAS
========================= */
.seguro-card-wrapper {
  display: block;
}

.seguro-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0,0,0,.07);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}

.seguro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
}

.seguro-img {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.seguro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seguro-nombre {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0,0,0,.45);
}

.seguro-body {
  padding: 18px;
}

.seguro-body p {
  font-size: .95rem;
  color: #444;
  margin-bottom: 12px;
}

.seguro-body a {
  font-weight: 600;
  color: #0079c2;
  text-decoration: none;
}

.seguro-body a:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .catalogo-filtros {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .catalogo-wrapper {
    padding: 30px 15px;
  }

  .seguro-img {
    height: 160px;
  }
}
.filtro-grupo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 1024px) {
  .catalogo-filtros {
    align-items: flex-start;
  }
}



/* Centrar contenido de cada grupo de filtros */
.filtro-grupo {
  align-items: flex-start; /* mantiene orden vertical */
}

@media (min-width: 1024px) {
  .filtro-grupo {
    align-items: center;
  }
}


@media (min-width: 1024px) {
  .filtro-grupo strong,
  .catalogo-filtros label {
    text-align: center;
  }
}
/* ===== FOOTER FULL WIDTH ===== */
.footer-sanitas{
  width:100%;
  margin:0;
  padding:0;
}

.footer-bg{
  width:100%;
  background:#0b1f4b; /* azul Sanitas */
}

.footer-link{
  color:#ffffff;
  text-decoration:none;
}

.footer-link:hover{
  text-decoration:underline;
}
.footer-bg{
  background:#0b1f4b;
}

.footer-link{
  color:#ffffff;
  text-decoration:none;
}

.footer-link:hover{
  text-decoration:underline;
}
/* ================= FOOTER ================= */
.footer-bar{
  background:#003057; /* o el azul exacto que quieras */
  width:100%;
}

.footer-link{
  color:#ffffff;
  text-decoration:none;
}

.footer-link:hover{
  text-decoration:underline;
}
footer {
  background: #003057;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.footer-sanitas > .container {
  margin-left: auto;
  margin-right: auto;
}
body {
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .footer-sanitas .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
