@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&display=swap');

body{
    background-color:rgb(93, 93, 172);
    font-family: "Afacad Flux", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
/*------------ BARRA DE NAVEGACIÓN--------------*/
#barraNav{
    position: fixed;
    top:15px;
    left: 15px;
    right: 15px;
    margin: 0;
    border: 0px;
    border-radius: 25px;
    background: #fafafa79;
    backdrop-filter: blur(0.7rem);
    -webkit-backdrop-filter: blur(0.7rem);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.164);
    z-index: 5;
}
#barraNav ul{
    display: flex;
    list-style-type: none;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.itemNav {
    padding: 5px 10px;
    z-index: 3;
}
.progress{
    position: absolute;
    top: 0;
    left: 0;
    min-width: 15%;
    max-width: 100%;
    height: 100%;
    border-radius: 25px;
    background: linear-gradient(to right, #50c8783b, rgba(44, 73, 168, 0.199));
    backdrop-filter: blur(0.7rem);
    -webkit-backdrop-filter: blur(0.7rem);
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.219);
    transition: 0.7s ease-in-out;
    z-index: 1;
}
.itemNav a{
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 14pt;
    font-style: italic;
    display: inline-block;
    line-height: 1;
    transition: 0.3s ease-in-out;
}
.itemNav a:hover{
    text-shadow: 0 0 20px black;
    transform: scale(1.2);
}

@media screen and (max-width: 992px) {
    #barraNav{
        top:-10px;
        left: 15px;
        right: 15px;
        margin: 0;
        transition: 0.5s ease-in-out;
    }
    #barraNav:hover{
        transform: translateY(15px)
    }
    .itemNav{
        display: none;
    }
    .progress{
        min-width: 15%;
        max-width: 100%;
    }

}
/*-------------MODALS-----------------*/
.modal-content{
    background-color: #ffffffc9;
    backdrop-filter: blur(0.8rem);
    -webkit-backdrop-filter: blur(0.8rem);
}
.modal-content .form-control, .modal-content .form-select{
    border-color: rgb(44, 73, 168);
    background-color: #00000000;
}
.modal-content .form-control:focus, .modal-content .form-select:focus{
    box-shadow: 0 7px 10px rgba(44, 73, 168, 0.527);
}
.modal-content .input-group .input-group-text{
    background-color: #00000000;
    color:rgb(44, 73, 168);
}
/*------------ SECCIONES--------------*/
.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}
.screen {
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
}
@media screen and (max-width: 992px) {
    .scroll-container {
        height: auto;
        overflow-y: none;
    }
    .screen {
        height: auto;
        display: block;
    }
}

/*------------ SECCIÓN 1--------------*/
#section1{
    background-color: rgb(129, 219, 185);
    justify-content: center;
    align-items: center;
    font-size: 32pt;
    color: white;
}
#Presentacion{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    background-color: rgb(44, 73, 168);
    padding: 100px;
    padding-right: 200px;
}
#Presentacion h1{
    font-size: 40pt;
    font-weight: bold;
    color: rgb(129, 219, 185);
    text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.24);
}
#Presentacion h4{
    font-size: 14pt;
    font-weight: normal;
    color: rgb(255, 255, 255);
}
#Foto{
    position:relative;
    top:0px;
    left: -150px;
    background-color: white;
    background-image: url("img/Foto2.jpg");
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 320px;
    width: 320px;
    box-shadow: 40px 40px 0 rgba(0, 0, 0, 0.4);
}
#marco{
    display: none;
    /*position:relative;
    top:40px;
    left: 40px;
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid white;
    height: 320px;
    width: 320px;
    z-index: -1;*/
}

@media screen and (max-width: 992px) {
    #Presentacion{
        height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        background-color: rgb(44, 73, 168);
        padding: 15px;
        text-align: center;
    }
    #Presentacion h1{
        font-size: 35pt;
    }
    #section1 .subsect2{
        height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0px;
    }
    #Foto{
        position:relative;
        margin: 0;
        padding: 0;
        top:0px;
        left: 0;
        background-color: white;
        height: 250px;
        width: 250px;
        box-shadow: 40px 40px 0 rgba(0, 0, 0, 0.4);
    }
    #marco{
        display: none;
        /*position:relative;
        top:35px;
        left: 35px;
        background-color: rgba(255, 255, 255, 0);
        border: 2px solid white;
        height: 250px;
        width: 250px;*/
    }
}
/*------------ SECCIÓN 2--------------*/
#section2{
    background-color: rgb(255, 255, 255);
}
#section2 .subsect1{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    color: rgb(44, 73, 168);
    padding: 150px;
    padding-bottom: 15vh;
}
#section2 h2{
    font-size: 30pt;
    font-weight: bold;
}
#section2 h4{
    font-size: 28pt;
    font-weight: bold;
}
#section2 p{
    font-size: 15pt;
}
#section2 .subsect2{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    color: rgb(44, 73, 168);
    padding: 150px;
    padding-top: 30vh;
}
.math-symbols, .programming-symbols {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
    transform: rotate(20deg);
}
.math-symbols svg, .programming-symbols svg {
    width: 110px;
    height: 110px;
    transform: rotate(-20deg);
}
.subsect1 .math-symbols {
    margin-top: 100px;
}
.subsect2 .programming-symbols {
    margin-bottom: 50px;
}
.subsect2 .programming-symbols svg{
    margin-bottom: 100px;
}
@media screen and (max-width: 992px) {
    #section2 .subsect1{
        height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content:baseline;
        align-items: left;
        color: rgb(44, 73, 168);
        padding: 35px;
        padding-top: 100px;
    }
    #section2 .subsect2{
        height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        color: rgb(44, 73, 168);
        padding: 35px;
        padding-bottom: 100px;
    }
    .math-symbols, .programming-symbols {
        display: none;
    }
}
/*------------ SECCIÓN 3--------------*/
#section3{
    background-color: rgb(44, 73, 168);
}
#section3 .subsect1{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    color: rgb(129, 219, 185);
    padding-top: 150px;
    padding-bottom: 150px;
    padding-left: 70px;
    padding-right: 50px;
}
#section3 .subsect2{
    padding: 0;
    padding-right: 50px;
    padding-top: 10vh;
    padding-bottom: 10vh;
}
#section3 .subsect2 #geogebras,
#section3 .subsect2 #manim{
    height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    color: rgb(129, 219, 185);
    padding: 0px;
    text-align: center;
    border: 0;
    background-color: white;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.521);
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}
#section3 .subsect2 #geogebras{
    margin-top: 5vh;
    margin-bottom: 5vh;
}
#section3 .subsect2 #geogebras img,
#section3 .subsect2 #manim img{
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}
#section3 h2{
    font-size: 30pt;
    font-weight: bold;
    color: rgb(129, 219, 185);
    padding-top: 50px;
}
#section3 h4{
    font-size: 22pt;
    font-weight: bold;
}
@media screen and (max-width: 992px) {
    #section3 .subsect1{
        height: 20vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        color: rgb(129, 219, 185);
        padding: 15px;
    }
    #section3 h2{
        font-size: 26pt;
        text-align: center;
    }
    #section3 h4{
        font-size: 24pt;
    }
    #section3 .subsect2{
        height: 80vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        color: rgb(129, 219, 185);
        padding: 15px;
    }
    #section3 .subsect2 #geogebras{
        margin-top: 0vh;
        margin-bottom: 5vh;
    }
    #section3 .subsect2 #manim{
        margin-top: 0vh;
        margin-bottom: 5vh;
    }
}

/*------------ SECCIÓN 4--------------*/
#Tutorias{
    background-color: rgb(255, 255, 255);
}
#Tutorias .subsect1{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    color: rgb(44, 73, 168);
    padding: 150px;
    padding-top: 200px;
}
#Tutorias .subsect2{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    color: rgb(44, 73, 168);
    padding: 150px;
    padding-left: 0;
}
#Tutorias h2{
    font-size: 28pt;
    font-weight: bold;
}
#Tutorias h4{
    font-size: 22pt;
    font-weight: bold;
}

/*Calendario*/
.fc-toolbar-title {
    font-size: 1.5em !important;
    font-weight: normal !important; /* Cambia el peso de la fuente */
    color: #333 !important; /* Cambia el color del texto */
    text-transform: lowercase !important; /* Convierte el texto a mayúsculas */
}
.fc-daygrid-day-frame{
    cursor: pointer;
    transition: all ease 0.5s;
}
.fc-daygrid-day-frame:hover{
    background-color: rgb(204, 212, 236);
    box-shadow: 5px 5px rgba(0, 0, 0, 0.2);
    transform: scale(1.2);
    z-index: 100;
}
#eventForm {
    display: flex;
    flex-direction: column;
}
#eventForm input{
    margin-bottom: 10px;
}
.form-control, .form-select, .btn{
    border-radius: 25px;
}
.nameForm{
    border-radius: 10px 10px 0 0;
}
.emailForm{
    border-top: 0;
    border-radius: 0 0 10px 10px;
}
#fileAttachment1{
    border-radius: 10px 10px 0 0;
}
#fileAttachment2{
    border-radius: 0;
    border-top: 0;
    border-bottom: 0;
}
#fileAttachment3{
    border-radius: 0 0 10px 10px;
}
#submitButton{
    width: 100%;
}
#MontoTotal{
    padding: 0;
    margin: 0;
    text-align: center;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.425);
}
/* Ocultar botón de vista diaria */
.fc-timeGridDay-button {
    display: none !important;
}
/* Ocultar botón "today" (hoy) */
.fc-today-button {
    display: none !important;
}
.fc-day-today {
    background-color: inherit !important;
}
.fc-highlight {
    background-color: rgba(0, 0, 0, 0.1) !important;
}
@media screen and (max-width: 992px) {
    #notaImportante{
        display: none;
    }
    #Tutorias .subsect1{
        height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        color: rgb(44, 73, 168);
        padding: 15px;
        padding-top: 100px;
        margin-bottom: 120px;
    }
    #Tutorias .subsect2{
        height: 50vh;
        font-size: 10pt;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        color: rgb(44, 73, 168);
        padding: 35px;
        padding-bottom: 100px;
    }
    #Tutorias h2{
        font-size: 26pt;
        font-weight: bold;
        text-align: center;
    }
    #Tutorias h4{
        font-size: 22pt;
        font-weight: bold;
        text-align: center;
        padding-bottom: 15px;
    }
    /* Ocultar botón de vista semanal */
    .fc-timeGridWeek-button {
        display: none !important;
    }
}

/*------------ SECCIÓN 5--------------*/
#section5{
    background-color: rgb(44, 73, 168);
}
#section5 .subsect1{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    color: rgb(129, 219, 185);
    padding: 15px;
}
#section5 .subsect2{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    color: rgb(129, 219, 185);
    padding: 150px;
}
#section5 .subsect2 p{
    font-size: 18pt;
    color: white;
}
#section5 h2{
    font-size: 32pt;
    font-weight: bold;
}
#section5 h4{
    font-size: 28pt;
    font-weight: bold;
}

/*Form contacto*/
#formContact {
    width: 100%;
    margin: 0 auto;
    padding-left: 100px;
    font-family: Arial, sans-serif;
}

#formContact .form-group {
    margin-bottom: 20px;
}

#formContact label{
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
}

#formContact .form-group .form-control {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 16px;
    color: #ffffff;
    background-color: #33333300;
}

#formContact .form-group .form-control:focus{
    outline: none;
    box-shadow: none;
    border-bottom: 2px solid rgb(129, 219, 185);
    color: rgb(129, 219, 185);
}

#formContact .form-group .form-control::placeholder {
    color: #ffffff;
}

#formContact .form-group textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

#formContact .btn-primary {
    background-color: rgba(129, 219, 185, 0.664);
    border-radius: 0;
    color: #000000;
    border: 2px solid #000000;
    width: 60%;
    padding: 10px 20px;
    margin-left: 20%;
    margin-right: 20%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 15px 15px 0px rgb(0, 0, 0);
}
#formContact .arrow {
    margin-left: 10px;
}
#formContact .btn-primary:hover,#formContact .btn-primary:focus{
    background:rgb(129, 219, 185);
    border:2px solid rgb(0, 0, 0);
    box-shadow: 10px 10px 0px rgb(0, 0, 0);
    color: rgb(0, 0, 0);
}

@media screen and (max-width: 992px) {
    #section5 .subsect1{
        height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: rgb(129, 219, 185);
        padding: 15px;
    }
    #formContact {
        padding-left: 0;
        margin-top: 50px;
    }
    #section5 .subsect2{
        height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: rgb(129, 219, 185);
        padding: 15px;
    }
    #section5 h2{
        font-size: 30pt;
        font-weight: bold;
        text-align: center;
    }
    #section5 h4{
        font-size: 28pt;
        font-weight: bold;
    }
    #section5 .subsect2 p{
        text-align: center;
        font-size: 20pt;
    }
}