body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow: hidden;
      font-family: Arial, sans-serif;
    }

    video#bgVideo {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .login-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(255, 255, 255, 0.85);
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        text-align: center;
        width: 300px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .login-container h2 {
      margin-bottom: 20px;
      color: #171717;
    }

    .login-container input[type="text"] {
      width: 100%;
      padding: 10px;
      font-size: 16px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    .login-container input[type="submit"] {
      background-color: #660099;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 16px;
      border-radius: 5px;
      cursor: pointer;
    }

    .login-container input[type="submit"]:hover {
      background-color: #b628fe;
    }
    
    .logoMovil {
      position: absolute;
      top: 25px;
      left: 20px;
      width: 205px;
      height: auto;
      cursor: move;
      z-index: 10;
    }
    
    .contacto {
      position: fixed;
      bottom: 15px;
      left: 20px;
      color: white;
      font-size: 14px;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 8px 12px;
      border-radius: 5px;
      z-index: 10;
      font-family: Arial, sans-serif;
    }

.contacto a {
  color: #ffffff;
  text-decoration: underline;
}


        .menu-navigation {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 15px 20px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .menu-button {
            padding: 12px 20px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 12px;
            font-weight: 600;
            color: white;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
            min-width: 120px;
            position: relative;
            overflow: hidden;
        }
        
        .menu-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.3);
        }
        
        .menu-button:active {
            transform: translateY(0);
        }
        
        .btn-inicio { background:#764ba2; }
        .btn-aprendo { background:#f5576c; }
        .btn-contacto { background: #02666b; }
        .btn-evaluacion { background: #ff6c00; }
        .btn-metodologia { background: #fee140; }
        .btn-matricula { background: #c60087; }
        .btn-acceso { background: #dcd800; }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .menu-navigation {
                flex-wrap: wrap;
                justify-content: center;
                max-width: 90%;
            }
            
            .menu-button {
                min-width: 100px;
                font-size: 10px;
                padding: 8px 12px;
            }
        }


.contenedores-inferiores {
    position: fixed;
    bottom: 0;
    left: 10%;
    width: 80%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    z-index: 100;
    box-sizing: border-box;
}









.animated-container {
    /* background: white; */
    width: 250px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* opacity: 0; */
    /* transform: translateY(100px); */
    animation: aparecerArriba 1s forwards;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.animated-container:nth-child(1) {
    animation-delay: 2s;
}
.animated-container:nth-child(2) {
    animation-delay: 2.2s;
}
.animated-container:nth-child(3) {
    animation-delay: 2.4s;
}
.animated-container:nth-child(4) {
    animation-delay: 2.6s;
}

@keyframes aparecerArriba {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.animated-container {
    width: 281px;
    height: 530px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    background: rgb(41 40 40 / 24%);
    color:#ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: translateY(100px);
    animation-fill-mode: forwards;
}

/* Animación de aparición desde abajo */
@keyframes aparecerArriba {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación de desaparición hacia abajo */
@keyframes desaparecerAbajo {
    to {
        opacity: 0;
        transform: translateY(150px);
    }
}

.animated-container.mostrar {
    animation: aparecerArriba 1s forwards;
}

.animated-container.ocultar {
    animation: desaparecerAbajo 1s forwards;
}


.pestana {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-sizing: border-box;
}

/* Colores individuales */
.color-1 .pestana { background-color: #90bf04a1; } /* Rojo */
.color-2 .pestana { background-color: #764ba29e; } /* Azul */
.color-3 .pestana { background-color: #ff6c00b0; } /* Verde */
.color-4 .pestana { background-color: #c600879e; } /* Naranjo */

/* Colores matricula */
.color-5 .pestana { background-color: #90bf04; } 
.color-6 .pestana { background-color: #ff8000; } 
.color-7 .pestana { background-color: #c600879e; } 
.color-8 .pestana { background-color: #ff00009e; } 






.contenido-box {
    flex: 1;
    padding: 15px;
    color: black;
}

.login-container {
    z-index: 9999 !important;
}


h5 {
    font-weight: 300;
    color: #ffffff;
    transform: translateX(0px) translateY(-18px);
    position: relative;
    z-index: 1;
}


.btn-contenedor1bajo {
    background: #90bf04;
    padding: 10px 0;
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 11px;
    /*font-weight: 600;*/
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    width: clamp(180px, 80%, 300px);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    align-self: center;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}




.btn-contenedor2bajo {
    background: #764ba2;
    position: fixed;
    bottom: 54px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 10px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    min-width: 120px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    z-index: 9999;
}





.btn-contenedor3bajo {
    background: #ff6c00;
    position: fixed;
    bottom: 54px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 10px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    min-width: 120px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    z-index: 9999;
}




.publicidad-contenedor {
    position: fixed;
    bottom: -20px; /* ahora está pegada al borde inferior */
    left: -1020px; /* oculto inicialmente */
    width: 970px; /* ancho real de la imagen */
    z-index: 9999;
    transition: left 1s ease-in-out;
}

.publicidad-contenedor.mostrar {
    left: 0px; /* aparece desde la izquierda */
}



.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*overflow: auto;*/
  /*background-color: rgba(0, 0, 0, 0.5);*/
}

.modal-contenido {
    margin: 10% auto;
    padding: 25px;
    border-radius: 10px;
    width: 80%;
    height: 60%;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    animation: aparecer 0.3s ease;
    background: rgb(77 213 0 / 69%);
    backdrop-filter: blur(7px);
    border: 1px solid rgb(255 255 255 / 58%);
    overflow-y: auto;     /* 👈 Scroll vertical */
    overflow-x: hidden;   /* 👈 Sin scroll horizontal */
}


.cerrar {
  color: #11ff0f;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.cerrar:hover {
  color: #000;
}








.modal2 {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*overflow: auto;*/
  /*background-color: rgba(0, 0, 0, 0.5);*/
}


.modal2-contenido {
    margin: 10% auto;
    padding: 25px;
    border-radius: 10px;
    width: 80%;
    height: 60%;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    animation: aparecer 0.3s ease;
    background: rgb(118 75 162 / 73%);
    backdrop-filter: blur(7px);
    border: 1px solid rgb(255 255 255 / 58%);
    overflow-y: auto;     /* 👈 Scroll vertical */
    overflow-x: hidden;   /* 👈 Sin scroll horizontal */
    z-index: 3001;
}


.cerrar2 {
  color: #d1a4ff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.cerrar2:hover {
  color: #000;
}






.modal3 {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*overflow: auto;*/
  /*background-color: rgba(0, 0, 0, 0.5);*/
}





.modal3-contenido {
    margin: 10% auto;
    padding: 25px;
    border-radius: 10px;
    width: 80%;
    height: 60%;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    animation: aparecer 0.3s ease;
    background: rgb(255 108 0 / 73%);
    backdrop-filter: blur(7px);
    border: 1px solid rgb(255 255 255 / 58%);
    overflow-y: auto;     /* 👈 Scroll vertical */
    overflow-x: hidden;   /* 👈 Sin scroll horizontal */
}


.cerrar3 {
  color: #ffa879;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.cerrar3:hover {
  color: #000;
}






.modal4 {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*overflow: auto;*/
    /* background-color: rgba(0, 0, 0, 0.5); */
}

.modal4-contenido {
    margin: 2% auto;
    padding: 25px;
    border-radius: 10px;
    width: 85%;
    height: 80%;
    /* max-width: 600px; */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    animation: aparecer 0.3s ease;
    background: rgb(223 53 76);
    backdrop-filter: blur(7px);
    border: 1px solid rgb(255 255 255 / 58%);
    overflow-y: auto;
    overflow-x: hidden;
}


.cerrar4 {
  color: #ffa879;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.cerrar4:hover {
  color: #000;
}





.modal5 {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*overflow: auto;*/
  /*background-color: rgba(0, 0, 0, 0.5);*/
}





.modal5-contenido {
    margin: 10% auto;
    padding: 25px;
    border-radius: 10px;
    width: 80%;
    height: 60%;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    animation: aparecer 0.3s ease;
    background: rgb(2 102 107);
    backdrop-filter: blur(7px);
    border: 1px solid rgb(255 255 255 / 58%);
    overflow-y: auto;     /* 👈 Scroll vertical */
    overflow-x: hidden;   /* 👈 Sin scroll horizontal */
}


.cerrar5 {
  color: #55c3c9;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.cerrar5:hover {
  color: #000;
}




.modal6 {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*overflow: auto;*/
  /*background-color: rgba(0, 0, 0, 0.5);*/
}


.modal6-contenido {
    margin: 2% auto;
    padding: 25px;
    border-radius: 10px;
    width: 85%;
    height: 80%;
    /*max-width: 600px;*/
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    animation: aparecer 0.3s ease;
    background: rgb(254 225 64);
    backdrop-filter: blur(7px);
    border: 1px solid rgb(255 255 255 / 58%);
    overflow-y: auto;     /* 👈 Scroll vertical */
    overflow-x: hidden;   /* 👈 Sin scroll horizontal */
}

.cerrar6 {
  color: #ceaf04;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.cerrar6:hover {
  color: #000;
}







.modal7 {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*overflow: auto;*/
  /*background-color: rgba(0, 0, 0, 0.5);*/
}

.modal7-contenido {
    margin: 2% auto;
    padding: 25px;
    border-radius: 10px;
    width: 85%;
    height: 80%;
    /* max-width: 600px; */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    animation: aparecer 0.3s ease;
    Background: rgb(65 148 158 / 66%);
    backdrop-filter: blur(7px);
    border: 1px solid rgb(255 255 255 / 58%);
    overflow-y: auto; 
    overflow-x: hidden; 
}


.cerrar7 {
  color: #81d0d9;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.cerrar7:hover {
  color: #000;
}







.modal8 {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*overflow: auto;*/
  /*background-color: rgba(0, 0, 0, 0.5);*/
}

.modal8-contenido {
    margin: 7% auto;
    padding: 25px;
    border-radius: 10px;
    width: 40%;
    height: 60%;
    /* max-width: 600px; */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    animation: aparecer 0.3s ease;
    background: rgb(71 82 176 / 86%);
    backdrop-filter: blur(7px);
    border: 1px solid rgb(255 255 255 / 58%);
    /* overflow-y: auto; */
    /* overflow-x: hidden; */
}


.cerrar8 {
  color: #ce94b9;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.cerrar8:hover {
  color: #000;
}









@keyframes aparecer {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}


.formulario-reunion {
    /* background: #ffffff; */
    padding: 0px;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    /*max-width: 500px;*/
    /*width: 100%;*/
}

    .formulario-reunion h2 {
      margin-bottom: 20px;
      color: #333;
      text-align: center;
    }

    .formulario-reunion label {
        /* font-weight: bold; */
        display: block;
        margin-top: 10px;
    }

    .formulario-reunion input,
    .formulario-reunion textarea {
        width: 100%;
        padding: 5px;
        margin-top: 1px;
        border-radius: 5px;
        border: 1px solid #ccc;
        box-sizing: border-box;
    }

    .formulario-reunion button {
        margin-top: 10px;
        background-color: #4e315f;
        color: white;
        border: none;
        padding: 12px;
        width: 40%;
        border-radius: 20px;
        font-size: 16px;
        cursor: pointer;
        margin-left: 30%;
    }

    .formulario-reunion button:hover {
      background-color: #bf70ee;
    }





.formulario-evalaucion {
    /* background: #ffffff; */
    padding: 0px;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    /*max-width: 500px;*/
    /*width: 100%;*/
}

    .formulario-evalaucion h2 {
      margin-bottom: 20px;
      color: #333;
      text-align: center;
    }

    .formulario-evalaucion label {
        /* font-weight: bold; */
        display: block;
        margin-top: 10px;
    }

    .formulario-evalaucion input,
    .formulario-evalaucion textarea {
        width: 35%;
        padding: 5px;
        margin-top: 1px;
        border-radius: 5px;
        border: 1px solid #ccc;
        box-sizing: border-box;
    }

    .formulario-evalaucion button {
        margin-top: 10px;
        background-color: #ff6c00;
        color: white;
        border: none;
        padding: 12px;
        width: 26%;
        border-radius: 20px;
        font-size: 16px;
        cursor: pointer;
        margin-left: 2%;
    }

    .formulario-evalaucion button:hover {
      background-color: #ad5412;
    }

    .contenedor-evalaucion {
        background: #321e0940;
        color: #ffffff;
        padding: 11px;
        border-radius: 12px;
    }

    .btn-evalaucion {
        background: #ff6c00;
        top: -1px;
        padding: 10px 20px;
        border: none;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 12px;
        font-weight: 600;
        color: white;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        min-width: 120px;
        position: relative;
        overflow: hidden;
        margin-top: auto;
        align-self: center;
        margin-bottom: 10px;
    }
    
    
      .whatsapp-button {
        display: inline-flex;
        align-items: center;
        background-color: #25D366;
        color: white;
        text-decoration: none;
        padding: 10px 15px;
        border-radius: 20px;
        font-weight: bold;
        font-family: Arial, sans-serif;
        transition: background-color 0.3s ease;
      }
            
      .whatsapp-button:hover {
        background-color: #1ebe5d;
      }
    
      .whatsapp-icon {
        width: 24px;
        height: 24px;
        margin-right: 10px;
      }
            
            
           
           
   .fila-contenedores-menu {
      display: flex;
      gap: 20px; /* espacio entre ellos */
      flex-wrap: wrap; /* hace que bajen si no caben en pantalla */
      justify-content: center; /* opcional, para centrar */
    }

    .contenedores-inferiores-menu {
        flex: 1 1 300px;
        max-width: 400px;
        display: flex;
        justify-content: center;
        padding: 10px;
        box-sizing: border-box;
    }
        
            
    .animated-container_menu {
        width: 280px;
        height: 404px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        /* opacity: 0; */
        background: #ffffff;
        color: #ffffff;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        padding: 0;
        /* transform: translateY(100px); */
        /* animation-fill-mode: forwards; */
        top: 40px;
    }
