/********************************Estilos Generales */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif; 
    scroll-behavior: smooth;
}

body
{
    background: #000; 
    color:#fff;  
}

.flexcenter
{   
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.flexcentercol
{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.dualFlexGeneral
{
    width: 100%;
    height: 90vh;
    display: flex;      
}

.flexGeneralImg, .flexGeneralText
{
   
    width: 50%;
    height:100%;  
   
}

.flexGeneralText
{
    color:#fff;
}

.flexGeneralImgPortada
{
    background: url("../sources/imagenes/portada.jpg") no-repeat center;
    background-size: cover;
    height: 100%;
    width:50%;  
}

.flexGeneralImgPortada figure
{
   
    height: 60%;
    
}

.flexGeneralImgPortada figure img
{
    height: 100%;
    width:100%;
    object-fit: contain;
   
    
}





/* **********************************************/


/* ****************************** ESTILOS PARA EL MAIN ***********/
.jumbotron
{  
    width:100%;
    height: 100vh;   
    
}

.cabecera
{    
    height: 10vh;
    position:fixed;
    width:100%;    
    justify-content: space-between;
    background: #000;
    border-bottom: solid 2px #fff; 
    
}

.espacio
{
  
    height: 10vh;
    width: 100%;   
}


#inputcheck
{
    display: none;
}

.tab20
{
    padding-left: 20px;
    color:fff;
}


.cabecera label
{
    color:#fff;
    border:solid 1px #fff;
    border-radius: 6px;
    margin-left: 5px;
    height: 60%;
    padding: 5px;
    cursor:pointer;   
    transition:all 0.2s;
}

.cabecera label:hover
{
    background: #fff;
    color:#000;
}

.membreteTipo
{
   
    margin-right: 10%;
    height: 95%;
    width:30%;    
}

.membreteTipo img
{
    height: 100%;
    
}

.menu
{
    border-top:solid 1px #fff;  
    position: absolute;
    display: block;
    top:10vh;
    width:40%;
    background: #000;
    color:#fff;
    margin-left: -40%;
    transition: margin 0.3s;   
}

.menu li
{
     
    text-align: center;
    list-style: none;
    border-top: solid #fff 1px;
}

.menu li a
{
    padding: 15px;
    display: block;
    min-height: 100%;
    color:#fff;
    text-decoration: none;
}


#inputcheck:checked ~ .menu
{
    margin:0;
}




/* ESTILOS DEL MEMBRETE */
.membrete, .btnRedes
{
  
    color:#fff;
    width: 60%;
   
    padding: 15px;
       
}

.membrete
{
    
    height: 45%;
    overflow-y: auto;
    justify-content: flex-start;
}

.btnRedes
{
    height: 20%;
}

.btnRedes a
{
    height: 80%; 
    color:#fff;
    text-decoration: none;
    
}

.btnRedes img
{
    height: 50%;
}

.btnContacto
{
    height: 20%; 
    width: 100%
}

.btnContacto a
{
    border:solid;
    border-radius: 12px;
    height: 90px;
    width:90px;
    padding: 5px;
    text-decoration: none;
    color:#000;
    background: #fff;
    
}

.btnContacto img
{
    height: 60%;   
}

.seccionGaleria
{
   border-top: solid #fff 2px;
   border-bottom: solid #fff 2px;
    color:#fff;
   
    height: 90vh;
}

.instadual
{
   height:80%;
    width:100%;  
}

.instadual img
{
    height: 90%;
    width: 23%;
    max-width: 400px;
    object-fit: cover;
    object-fit: contain;
    border:solid #fff;
    border-radius: 12px;
}



/* formulario */
.formulario
{ 
    background: #fff;
     color:#fff;
    max-width: 70%;
    margin: auto;
    height: 90vh;
    overflow-y: auto;  
}

.formulario h2{
    margin-top: 3em;
    color:#fff;
}

.formulario ul{
    margin-left: 10px;
    padding-left: 10px;
}

.formulario input,.formulario textarea{
    width:80%;
    font-size: 1em;
    height: 3em;
    border-radius: 12px;
    margin-top: 15px;
}

.formulario textarea{
    max-width: 80%;
    min-width: 80%;
    max-height: 7em;
    min-height: 7em;
    padding: 5px;
}

#enviar{
    width:100px;
    cursor:pointer;
    background: #fff;
    color:#000;
    margin-bottom: 4em;
}

.logoGracias{
color:#fff;
    justify-content: center;
      text-align: center;
    
}

.logoGracias img{
    height: 200px;
  
}

.logoGracias a{
    color:red;
    text-decoration: none;
}

@media(max-width:768px)
{
    .jumbotron{
        height: auto;
    }
    
    .dualFlexGeneral{
        
        flex-direction: column;
        height: auto;
        
    }
    
    .flexGeneralImgPortada,.flexGeneralText{
        height: auto;
        width: 100%;
    }
    
    
    .btnRedes{
        height: 150px;
    }
    
  
    
    .seccionGaleria{
        height: 90vh;
    }
    
    .instadual{
      
        height: 80%;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        
    }
    
    .instadual img{
       
        width: 60%;        
        object-fit: contain;
        margin-left: 10px;
       
    }
    
    
    .formulario{
        
        justify-content: flex-start;
        width: 100%;
    }
    
   
    }
