/* ========================= */
/* CONTENEDOR GENERAL */
/* ========================= */

#seguro-por-zona {
  background: #f4f7fb;
}

#seguro-por-zona h2 {
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}

#seguro-por-zona p {
  color: #5f6b7a;
  font-size: 1.05rem;
}


/* ========================= */
/* BLOQUES DE ZONA */
/* ========================= */

.zona-bloque {
  background: #ffffff;
  padding: 35px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.zona-bloque:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}


/* ========================= */
/* TITULOS */
/* ========================= */

.zona-bloque h3 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e293b;
}

.zona-header p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 20px;
}


/* ========================= */
/* IMAGEN MASCOTA */
/* ========================= */

.zona-img {
  max-width: 200px;
  margin: 10px auto 20px auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.zona-bloque:hover .zona-img {
  transform: scale(1.04);
}


/* ========================= */
/* LISTADO DE REGIONES */
/* ========================= */

.lista-regiones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.region-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1e293b;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 20px;
  background: #eef2f7;
  transition: all 0.25s ease;
}

.region-link:hover {
  background: linear-gradient( 135deg, var(--si-wa-hover), var(--si-wa) );
  color: #ffffff;
  transform: translateY(-2px);
}


/* ========================= */
/* RESPONSIVE AJUSTES */
/* ========================= */

@media (max-width: 991px) {
  .zona-bloque {
    margin-bottom: 25px;
  }
}