/* Fondo de cada card */
.bg-spelling-bee {
  background: url('../img/bee2025.webp') center/cover no-repeat;
}

.bg-workshop {
  background: url('../img/workshop.webp') center/cover no-repeat;
}

.bg-movie {
  background: url('../img/movie.webp') center/cover no-repeat;
}

.bg-artes-visuales{
  background: url('../img/artes-visuales.webp') center/cover no-repeat;
}

.bg-artes-escenicas{
  background: url('../img/artes-escenicas.webp') center/cover no-repeat;
}

.bg-otros-artes {
  background: url('../img/otros-artes.webp') center/cover no-repeat;
}


.promo-card {
 display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 450px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


.promo-logo {
  width: 80px;
  height: auto;
  transition: transform 0.4s ease;
}


.promo-card:hover .promo-logo {
  transform: scale(1.1);
}
.proctorizer-section {
  position: relative;
}

.btn-outline-agenda {
  border: 2px solid #f90025;
  color: #f90025;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-agenda:hover {
  background-color: #f90025;
  color: #fff;
}



  /* ===== RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .promo-card {
    height: 350px;
  }

}

