/* Ajuste general */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #F2D2BD, #F7D9BC, #223248);
  background-attachment: fixed;
  color: #070101;
  line-height: 1.6;
}

/* Contenedor principal */
.informacion-container {
  max-width: 1000px;
  margin: 120px auto 60px; /* deja espacio al header */
  padding: 20px;
}

/* Bloques de información */
.info-bloque {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-bloque:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

/* Títulos */
.info-bloque h1,
.info-bloque h2 {
  margin-top: 0;
  color: #ffd700; /* dorado elegante */
  font-weight: 700;
}

.info-bloque h1 {
  font-size: 2.2rem;
  text-align: center;
}

.info-bloque h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

/* Texto */
.info-bloque p {
  font-size: 1rem;
  text-align: justify;
  color: #000000; 
}

/* Lista de valores */
.info-bloque ul {
  list-style: none;
  padding: 0;
}

.info-bloque ul li {
  padding: 8px 0;
  font-size: 1rem;
  position: relative;
  padding-left: 25px;
}

.info-bloque ul li::before {
  content: "✔";
  color: #ffd700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .informacion-container {
    padding: 15px;
    margin: 100px 15px 40px;
  }

  .info-bloque {
    padding: 20px;
  }

  .info-bloque h1 {
    font-size: 1.8rem;
  }

  .info-bloque h2 {
    font-size: 1.4rem;
  }
}
