/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: #f0f0f0;
}

/* Secciones */
.seccion {
  padding: 25px 20px;
  text-align: center;
  color: #fff;
}

.seccion1 { background: linear-gradient(to right, #6a11cb, #2575fc); }
.seccion2 { background: linear-gradient(to right, #fc5c7d, #6a82fb); }
.seccion3 { background: linear-gradient(to right, #43cea2, #185a9d); }
.seccion4 { background: linear-gradient(to right, #f55727, #ebf527); }
.seccion5 { background: linear-gradient(to right, #005210, #00FF32); }

.seccion h2 {
  margin-bottom: 20px;
  font-size: 2em;
}

/* Tarjetas de enlaces */
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 30px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.card span {
  font-weight: bold;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

