.card-educativa {
    position: relative;
    cursor: pointer;
    color: white;
    text-align: center;
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: 0.3s;
    
  }

  /* Efecto al pasar el mouse */
  .card-educativa::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(35, 33, 33, 0.4); /* Ajusta el nivel de oscuridad aquí */
    z-index: 1;
  }
  .card-educativa:hover::before {
    opacity: 1;
    background-color: rgba(38, 29, 99, 0.5);
  }
  
  .card-educativa:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(118, 97, 251, 0.3);
    background-color: rgba(38, 29, 99, 0.5);
  }
  
  /* Estilo del texto encima de la imagen */
  .card-educativa h4,
  .card-educativa i {
    position: relative;
    z-index: 2;
    margin: 0;
  }



  .card-educativa h4 {
    position: absolute;
    bottom: 150px;
    left: 0;
    right: 0;
    font-size: 1.3rem;
    color: #fff;

  }


  #SUA{
    bottom: 125PX;
  }

  .card-educativa i {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
  }

  .seccion-contenido {
    display: none;
    padding: 2rem;
    background-color: #f8f9fa;
    margin-top: 1rem;
  }

  .active-section {
    display: block;
  }

  .color-info{
    color: grey;
  }

  #ofertaEducativa{
    display: block;
  }

  #ofertaEducativaMovil{
    display: none;
  }

  @media (max-width: 767px) {
    #ofertaEducativa{
      display: none;
    }
  
    #ofertaEducativaMovil{
      display: block;
    }
  }