/* Fuentes */
@font-face {
    font-family: "Roboto";
    src: url(fonts/RobotoCondensed-VariableFont_wght.ttf);
}
@font-face {
    font-family: "Myriad";
    src: url(fonts/MYRIADPRO-REGULAR.OTF);
}
/* Pseudo-Reset */
*{
    margin: 0;
    padding: 0;
}
body{
    font-family: "Roboto";
}
/* Variables */
:root{
    --color1: #3d0753;
    --color2: #5a0756;
    --color3: #f72585;
    --color4: #fdc500;
    --color5: #ffd500;
}
/* Encabezado */
header{    
    width: 100%;
    margin-bottom: 20px;
    background-color: white;    
}
#logoCG{
    width: 100%;
    padding: 1.5% 0;
    background-color: white;
    text-align: center;
}
#logoCG img{
    width: 30%;
}
/* Carrusel */
.glide{
    width: 100%;
}
.glide__slide img{
    width: 100%;
}
.glide__bullet{
    background-color: #3d0753;
}
.movil{ display: none;}
@media screen and (max-width: 700px) {
    .glide{ display: none; }
    .movil{ display: block;}
    .glide__bullets{
        bottom: 150em;
    }
    #logoCG img{
        width: 60%;
    }
}
/* Patrocinio y Registro */
#info{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;  
    width: 96%;
    padding: 2%;
}
#info section{
    width: 48%;
    margin: 1%;
    text-align: center;    
}
@media screen and (max-width: 650px) {
    #info section{
        width: 98%;
    }
}
#info section img{
    width: 50%;    
}
#info section h2{
    font-size: 2.4em;
    color: #3d0753; 
}
#registro input, #registro select{
    width: 90%;
    padding: 2%;
    margin: 1%;
    border-radius: 20px;
    border: none;
    box-shadow: 0 0 2px #5a0756;
}
#registro select, #registro input[type=button]{
    width: 94%;
}
#registro input[type=button]{
    background-color: #3d0753;
    color: #ffd500;
    font-size: 1.2em;
}
#registro a{
    text-decoration: none;
    color: #f72585;
    font-weight: bold;
}
/* Mapas */
#mapas{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;  
    width: 96%;
    padding: 2%;
    background-color: #fdc500;
}
#google-map{
    width: 48%;
    margin: 1%;
    border-radius: 20px;
}
#google-map iframe{
    width: 100%;
    min-height: 280px;
    border-radius: 20px;
}
#direccion{
    width: 44%;
    margin: 2%; 
    background-color: white;
    padding: 1%;
    font-size: 1.4em;
    border-radius: 20px;
}
@media screen and (max-width: 650px) {
    #google-map{
        width: 98%;
    }
    #direccion{
        width: 94%;
    }
}
#direccion p{ margin-bottom: 10px;}
/* Footer */
footer{
    width: 96%;
    padding: 2%;
    background-color: #3d0753;    
    text-align: center;
}
footer p{
    color: white;
    font-size: 1em;
}
/* Mi Dialogo */
#midialogo{    
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 30dvw;
    height: 20dvh;
    padding: 2.5dvh 2.5dvw;
    background-color: white;
    top: 37.5dvh;
    left: 32.5dvw;
    box-shadow: 0 0 5px #444444;
    border-radius: 30px;
    text-align: center;
    font-size: 1.4em;
    border: none;    
}
#midialogo p{
    margin: 15px;
}
#cerrar{
    padding: 3px;    
    color: white;
    background-color: red;
    border-radius: 10px;
    cursor: pointer;
}
::backdrop{
    background-color: #3c026971;
}