/* SECCIONES PAGINA PRINCIPAL */

.contenedor-secciones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px 20px;
}

.tarjeta {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.tarjeta h3 {
  color: #52223d;
  font-size: 30px;
}

.tarjeta h4 {
  margin-top: 0px;
  margin-bottom: -15px;
  color: #ad0048;
}

.boton {
  display: inline-block;
  margin-top: 0px;
  padding: 15px 30px;
  background-color: #c8ddf2;
  color: #52223d;
  border: 2px solid #52223d;
  font-size: 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.boton:hover {
  background-color: #52223d;
  color: #c8ddf2;
}