@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* Pantalla Index*/
.logo-index
{
   display: flex;
   justify-content: center;
   align-items: center;    
}

.logo-index img
{   
  width: 50vw;
  padding: 20vh 0;

}

/*Pantalla de loggeo*/

.partedearriba{
    
    background-color: rgb(100, 169, 220);
    display: flex;
    flex-direction: column;
    align-items:center;
    margin:1em 20% .5em;
}
.partedearriba img{
    width: 7.5em;
    margin: 1em;
}
.partedearriba p{
    color:white;
    font-size: calc(.8em + 1vw);
    font-weight: 100;
}
.partedearriba h3{
    color:#0B2040;
    font-weight: 100;
    font-size: calc(1em + 1vw);
}
.partedearriba h2{
    color:#0B2040;
    font-weight: 700;
    font-size: calc(2.5em + 1vw);
}

.inicio{
    background-image: url(../imagenes/fondoinicio.png);
    background-size:cover;
    
}
.contenedorboton1{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.boton1 {
    
    background-color: #65BC45;
    color: #ffffff;
    padding: 1em 2em;
    margin: 1.5em;
    display: inline-block;
    align-self: center;
    width: 12em;
    border-radius: 1em;
    text-align: center;
    border: none;
    box-shadow: 3px 3px 10px #535252;
   
}

.boton1:hover{
    background-color: #8bde6c;
    
    transition: all .4s ease;
}

.boton1 a {
    text-decoration: none;
    color: white;
}

.boton2 {
    text-align: center;
    margin: 0.2em;
    font-size: .8em;
}
.boton2 a {
    color: #0B2040;
    font-weight: 100;
    font-size: 1em;
    
}

.formulario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin:1em 30% .5em;
    
}
formulario input {
    color: white;
    background-color: transparent;
    border: none;
    border-bottom: solid 0.1em #0B2040;
    padding-bottom: .3em;
    margin-top: .5em;
    outline: none;
    text-align: center;
    font-size: 1em;
    }

formulario input::placeholder {
    color: #0B2040;
   
}



/* Barra de arriba*/
.navegador {
    
    padding: .25em;    
    height: 3em;    
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0B2040;
}

.logo{
    display: flex;
    color: white;
    align-items: center;
}

.logo h2{
    font-weight: 700;
    text-transform:uppercase;
    font-size: 1em;
}

.logo img{
    display: block;
    height: 2.5em;
    margin: 0 1em;
    
}

.navegador > ul > li > a {
    width: 3em;
    height: 3em;
    margin-left: .3em;
    background-image: url(../imagenes/botonmenuinactivo.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    }

/* menu desplegable */

.navegador nav {
    background-color: rgba(100, 169, 220, 0.95);
    color: white;
    
    /* para salir del "flujo de información" del fondo 
        y colocase en una capa superior fija */
    position: fixed;
    left: -50vw;
    top: 0;
    height: 90vh;
    min-width: 30vw;
    transition: all .7s ease;
    z-index: 999;      
}


/* cuando el módulo de navegación
   sea "destino" de un vínculo cliqueado */
.navegador nav:target {
    left: 0;
}

.usuario {    
    margin: auto;
    text-align: left;
    font-size: 75%;
    padding: 5em 1em 1em 1em;
    background-color: #0B2040;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;        
}

.usuario img {
    width: 10vmin;    
    max-width: 15em;
    max-height: 15em;
    margin: 0 1em 0 0;
}

.usuario h3{
    font-weight: 700;
    font-size: 1.2em;
}

.usuario p{
    font-weight: 100;
    font-size: .9em;
}

#x {    
    position: absolute;
    width: 3em;
    height: 3em;
    margin-left: .6em;
    display: flex;
    justify-content: center;
    align-items: center;    
    background-image: url(../imagenes/botonmenu.png);
    background-size: cover;
}

.lista a {
    color: #0B2040;
    display: flex;
    align-items: center;
    padding: .5em 1em;
    text-align: left;
    text-decoration: none;
    font-weight: 700;
}

.lista a:hover {
    background-color: #295589;
    color:white;
    transition: all .4s ease;
}

.lista img{
    width: 1.5em;
    margin: 0 .5em 0 0;
}


body{
    background-color: #64A9DC;
    
}

/*Botonera de Actividades*/

.botonera ul{
    display:flex;
    justify-content: flex-start;
    flex-wrap:wrap;
    margin: 1em 5% 1em 5%;    
}

.botonera li{
    
    margin: .3em;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.botonera li a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color:white;
    text-decoration: none;
    background-color: #295589;
    border-radius: 1em;
    width: 41vw;
    max-width: 26em; 
    box-shadow: 3px 3px 10px #535252;
}

.botonera li a:hover{
    background-color: #65BC45;
    transition: all .8s ease;
    
}

.botonera img{
    width: 10em;;
    height: 10em;;
    opacity: .5;
    padding:  1em;
}

.botonera h3{
    padding-bottom: .8em;     
}

.botonera img:hover{
    opacity: 1;
    transition: all .8s ease; 
}

/* Todo lo vinculado a los titulos con la  barrita esa que divide
*/

.titulos {    
    border-bottom:  solid 0.1em #0B2040;       
}

.titulos h2{
    font-weight: 700;
    font-size: calc( 1.5em + 1vw);
    color: #0B2040; 
    margin: .8em  5% .4em ;
    }

.fondo{
    position: fixed;
    right:-2.5em;
    top: -1%;
    z-index: -1;
    opacity: 0.3;
    }
.nada{
    color: aliceblue;
}

/*Subtitulo y parrafo de información */
.informacion{
    margin: 1em 5% 1em ;    
}

.informacion h3{
    font-weight: 500;
    margin-bottom: .4em;
    
}

.informacion p{
    font-weight: 100;
}
/* Botonera de 3 botones al inferior de la pagina*/
.botonerainferior h3{
    margin: 1.5em 5% 1em ;
    border-bottom:  solid 0.1rem #0B2040;
}
.botonerainferior ul{
    display: flex;
    justify-content: center;
    margin: 1em 5% 1em ;
    list-style: none;
    
    
}
.botonerainferior ul li {margin: 0 2% 0 2%}
.botonerainferior li a{
    background-color: #65BC45;
    display: flex;
    justify-content:center;
    align-items: center;
    text-decoration: none;    
    width:calc(4em + 6vw);
    height:calc(4em + 6vw);
    max-height: 8em;
    max-width: 8em;
    box-shadow: 3px 3px 10px #535252;
    border-radius: 1.1em;
    
}

.botonerainferior li a:hover{
    background-color: #8bde6c;
    transition: all .6s ease;
}
.botonerainferior a{
    text-decoration: none;
    color: white;
    font-size: 1.15em;
    
}


/* Botonera de horarios*/
.dias{
   
    margin: .5em 5%; 
}

.dias h4{
    font-weight: 400;
    font-size: 1em;;
    color: #0B2040;
    margin-bottom: 1em;}
.horarios{
    min-height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
    justify-content: flex-start; 
    list-style: none;
    
}
.horarios li {
    justify-content: center;
    flex-direction: column;    
    display: flex; 
    width: 43vw;    
    max-width: 20em; 
    
} 
 
.horarios li a:hover{
    background-color: #8bde6c;
    transition: all .6s ease;
}

.horarios li a{
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: cente;
    margin:0 15% ;
    background-color: #65BC45;
    border-radius: 1.4em;
    padding: .5em 1em 1em  1em;
    margin: 0 1em 1em 0;
    box-shadow: 3px 3px 10px #535252;
}

.horarios li a p{
    font-weight: 100;
}

.horarios li a h3{
    margin-top: .5em;
}

.ticketpago h4{
    color: white;
    font-weight: 100;
    margin: 2.2em 5% 1.2em 5%;
    text-align: center;
    font-size: calc(1em + 1vw);    
}

.ticketpago h2{
    color:#0B2040;
    text-align: center;
    font-size: calc(3em + 2vw);
    margin: .3em 0 0;
}

.ticketpago {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pagodatos {display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    
}


.realizarpago h3{
    font-weight: 700;
    font-size: 1em;
    margin: 1em 0 0 .5em;;
}

.realizarpago input{
    width: 50vw;
    height: 3vh;
    max-width: 30em;
    border-radius: .5em;
    border:none;
    padding: .8em;
    margin-top: .5em;
    }

.realizarpago input:last-child{
    margin-bottom: 15%;}

.realizarpago{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.pago{
    margin: 8em 10% 2em ;
    display: flex;
    flex-direction: column;
align-items: center;}

.pago h2{
    font-size: calc(3em + 1vw);
    max-width: 7em;
    
    text-align: center;
    margin: 0 5%;
}

.pago img {
    margin: 4em;
}

.calendario img{   
    margin: 5% 0;
    width: calc(20em + 15vw);
}
.calendario {display: flex;
justify-content: center;
}

.calendario ul{list-style: none;}

#calendariodesplegable div{
    background-color: white;
    border: solid .1em #0B2040;
    margin:0 10%;
    width: calc(20em + 15vw);
    height: 50vh;}

    #calendariodesplegable{
    display: flex;
    justify-content: center;
    }

#calendariodesplegable p {margin: 1.2em 5em 0 1.2em;}
#calendariodesplegable p:nth-of-type(1){color:#287BA9;}
#calendariodesplegable p:nth-of-type(2){color:#B93593;}
#calendariodesplegable p:nth-of-type(3){color:#65BC45;}

#calendariodesplegable{
   background-color: rgba(100, 169, 220, 0.95);
    color: white;
    
    /* para salir del "flujo de información" del fondo 
        y colocase en una capa superior fija */
    position: fixed;
    
    top: 70em;
    height: 90vh;
    min-width: 30vw;
    transition: all .7s ease;
    z-index: 999;      
}

#calendariodesplegable:target{
   top: 30em;   
}



#x2 {    
    position: absolute;
    bottom: 49em;
    right: calc(2em + 3vw);
    width: 3em;
    height: 3em;
    margin-left: .6em;
    display: flex;
    justify-content: center;
    align-items: center;    
    background-image: url(../imagenes/botonmenu.png);
    background-size: cover;
    border-radius: .5em;
    box-shadow: 2px 2px 5px #838383;
    
}

#x3 {    
    position: absolute;
    bottom: 45em;
    right: calc(2em + 3vw);
    width: 3em;
    height: 3em;
    margin-left: .6em;
    display: flex;
    justify-content: center;
    align-items: center;    
    background-image: url(../imagenes/boton%20abrir.png);
    background-size: cover;
    box-shadow: 2px 2px 5px #838383;
}


.navegador nav {
    background-color: rgba(100, 169, 220, 0.95);
    color: white;
    
    /* para salir del "flujo de información" del fondo 
        y colocase en una capa superior fija */
    position: fixed;
    left: -50vw;
    top: 0;
    height: 90vh;
    min-width: 30vw;
    transition: all .7s ease;
    z-index: 999;      
}


/* cuando el módulo de navegación
   sea "destino" de un vínculo cliqueado */
.navegador nav:target {
    left: 0;
}

.

#x {    
    position: absolute;
    width: 3em;
    height: 3em;
    margin-left: .6em;
    display: flex;
    justify-content: center;
    align-items: center;    
    background-image: url(../imagenes/botonmenu.png);
    background-size: cover;
}

.logro1{
    background-color: white;
}
.contenedorlogros{display: flex;justify-content: center;}
.logro2 img {
    
    width: calc(20em + 10vw);
    margin:3% 0 ;
    max-width: 35em;
}