@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i&display=swap');
.uppercase {
    text-transform: uppercase; /* Convierte el texto a mayúsculas */
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Source Sans Pro', sans-serif;
}

body{
    background: #f6f6f6;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    box-shadow: 0 4px 25px -22px black;
    z-index: 2;
}

.header-content{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.logo{
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo h1 b{
    color: #FF8300;
    font-size: 24px;
}
.logo h1{
    color: #0047BA;
    font-size: 24px;
    font-weight: bold;
}
.logo .logo-menu img{
    width: 180px;
}

.menu {
    height: 80px;
}

.menu nav{
    height: 100%;
}

.menu nav ul{
    height: 100%;
    display: flex;
    list-style: none;
}

.menu nav ul li{
    height: 100%;
    margin: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.menu-selected:before{
    content: '';
    width: 100%;
    height: 4px;
    background: #777777;
    position: absolute;
    top: 0;
    left: 0;
}

.menu nav ul li a{
    color: #777777;
    font-size: 18px;
    transition: color 300ms;
}

.menu nav ul li a:hover{
    color: #000000;
}

.menu .text-menu-selected{
    color: #777777;
}

.menu nav ul li a i{
    display: none;
}
.main-form {
    max-width: 600px; /* Ajusta el ancho según necesites */
    margin: 20px auto; /* Centra el contenedor */
    padding: 20px; /* Agrega un poco de padding */
    border: 1px solid #ccc; /* Opcional: agrega un borde */
    border-radius: 10px; /* Opcional: agrega esquinas redondeadas */
    background-color: #f9f9f9; /* Opcional: cambia el color de fondo */
}
.titulo-formulario{
    text-align: center;
    color: #FFF;
    font-weight: bold;
    font-size: 30px;
    background-color: #00000030;
    border-radius: 10px;
}
.btnPrivacidad{
    color: #FF8300;
    font-weight: bold;
}
.btnPrivacidad:hover{
    color: #0047BA;
}
.btnRegistrar{
    color: #ffffff !important;
    background-color: #0047BA !important;
    border-color: #0047BA !important;
}
.btnRegistrar:hover{
    color: #ffffff !important;
    background-color: #FF8300 !important;
    border-color: #FF8300 !important;
}
.btnVisita{
    color: #0047BA !important;
}
.btnVisita:hover{
    color: #FF8300 !important;
}

legend{
    text-align: center;
}
/*Container*/
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Para que el video esté detrás de otros elementos */
    filter: blur(5px); /* Aplica desenfoque al video */
}

.container-all {
    position: relative; /* Necesario para que el contenido se posicione sobre el video */
    z-index: 1; /* Asegúrate de que el contenido esté encima del video */
}

.requisitos{
    background-color: #FFF;
}
.requisitos-titulo {
    font-weight: bold;
    text-align: center;
}
.requisitos-subtitulo {
    text-align: left;
    font-size: 14px;
}

/*Footer - pie de pagina*/

.container-footer{
    width: 100%;
    padding: 40px 0;
    background: #fff;
    margin-top: 40px;
}

.container-footer footer{
    max-width: 1200px;
    margin: auto;
}

.container-footer footer .logo-footer{
    text-align: center;
}

.container-footer footer .logo-footer img{
    width: 180px;
}

.container-footer footer .redes-footer{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}


.container-footer footer .redes-footer .icon-redes-footer{
    font-size: 20px;
    margin: 20px;
    background: #efefef;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: #a2a2a2;
}

footer .redes-footer .fa-facebook-f:hover{
    background: #41579A;
    color: #fff;
}

footer .redes-footer .fa-tiktok:hover{
    background: linear-gradient(#EE1D52, #69C9D0, #000000);
    color: #fff;
}

footer .redes-footer .fa-instagram:hover{
    background: linear-gradient(to top right, #FCDE30, #E9712A, #D2313B, #AE4198, #7540A1, #5443A8);
    color: #fff;
}


.container-footer footer hr{
    margin-top: 20px;
    border: none;
    height: 2px;
    background: #c0c0c07a;
}
.container-footer h4{
    text-align: center;
    margin-top: 40px;
    color: #8e8e8e;
    font-weight: 500;
    font-size: 14px;
}
.footer-text{
    text-align: center;
    color: #8e8e8e;
}
.footer-text a{
    color: #777; 
    text-decoration: none;
}
.footer-text a:hover{
    color: #777; 
    text-decoration: none;
}
/* Responsive Design - adaptable a dispositivos moviles*/

@media screen and (max-width: 1220px){

    .header-content,
    .container-footer footer{
        max-width: 1000px;
        padding: 0 20px;
    }

}

@media screen and (max-width: 800px){

    body{
        overflow-x: hidden;
    }

    .container-all{
        transition: all 300ms cubic-bezier(1,0,0,1);
    }

    .move-container-all{
        transform: translateX(300px);
    }

    .menu{
        width: 0px;
        height: 100vh;
        position: fixed;
        top: 80px;
        left: 0;
        background: #fff;
        overflow: hidden;
        transform: translateX(-350px);
        box-shadow: 10px 0 20px -25px black;
        transition: all 300ms cubic-bezier(1,0,0,1);
    }

    .show-lateral {
        width: 300px;
        transform: translateX(0px);
    }

    .menu nav ul {
        flex-direction: column;
    }

    .menu nav ul li{
        max-width: 200px;
        height: 50px;
        justify-content: flex-start;
    }

    .menu-selected:before{
        width: 0;
    }

    .menu nav ul li a{
        margin-top: 40px;
        color: #858585;
    }

    .menu nav ul li a i{
        width: 20px;
        display: inline-block;
        margin-right: 10px;
        color: #46a2fd;
    }

    #icon-menu{
        display: flex;
    }

    .container-aside{
        flex-wrap: wrap;
    }
    .titulo-formulario{
        text-align: center;
        color: #FFF;
        font-weight: bold;
        font-size: 22px;
        background-color: #00000030;
    }
}