/* FUENTES TIPOGRAFICAS */
@font-face{
    font-family:helveticac;
    src: url(../Afuentes/HelveticaLTStdComp.otf);
}

@font-face {
    font-family:Roboto;
    src: url(../Afuentes/Roboto.ttf);
}



/******************  ESTILOS GENERALES CSS ***********************/

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

html
{
    font-family:Roboto, sans-serif;
    scroll-behavior: smooth;
    
}

body::-webkit-scrollbar
{
    width:8px;
}

body::-webkit-scrollbar-thumb
{
    background-color:#ce4942;
    border-radius: 10px;
}

h1
{
    font-family: helveticac;
    font-weight: normal;
    font-size: 3em;
    margin-left: 20px;
    color:#ce4942;
}

h2
{
    font-family: helveticac;
    font-weight: normal;
    color:#ce4942;
}

h3
{
    font-family: helveticac;
    font-weight: normal;
}


li
{
    list-style-position: inside;
}

.footer2
{
    font-size: x-small;
    color: #0489ce;
}

.footer2 a
{
     text-decoration: none;
    color: #0489ce;
}

.footer3 a
{
    text-decoration: none;
    color: #0489ce;
    
}


.btn
{
    border:solid;
    width:100px;
    height:300;
    display: block;
    margin: auto;
    line-height: -2;
    border-radius: 12px;
    padding: 5px;
    color:#fff;
    background: #0489ce;
    font-size: 1.1em;
}

.btn:hover
{
    cursor: pointer;
}

.espacio
{
    
    height: 100px
}

@media(max-width:768px)
{
    .espacio{
        height: 50px;
    }
}

footer
{
    
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ***************** BOTON RESERVA *****************/
.btnReserva
{
    color: #ffffff;
    background:#ce4942;
    border-radius: 10px;
    width:200px;
    margin: auto;    
}

.btnReserva a h2
{
    color:white;
}



.btnReserva a h2:hover
{
    background: #0489ce;
    transition: background 0.3s;
    border-radius: 10px;
    color:#fff;

}

.btnReserva a
{
    text-decoration: none;
    margin: auto;
    text-align: center;   
}






/* ESTILOS PARA EL BODY     
*/

/* ############################################################## */
body
{
    background: #fff;
    width:100%;
    
}

/* 
*****************************************MODULO DE MENU DE HAMBURGUESA 
*/

.menuHamburguesa
{
    width:100%;
    position: fixed;
    top:0px;
    height: 100px;   
    background: #fff;
    z-index: 100;
    display: flex;
    flex-direction: column-reverse;
  
}

#btn-menu{
    display: none;
}

.menuHamburguesa label
{
    display: block;
    width:40px;
    height: 40px;    
    border-right: 2px solid lightblue;
    display: none;

    
}

.menuHamburguesa label:hover{
    cursor: pointer;
    background: rgba(0,0,0,0.5);
}

.Hmenu 
{
   
    height: 50px;
    background: #fff;
    
}

.Hmenu ul
{
    height: 50px;
    margin: 0;
    list-style:none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: #fff;
    
    
}

.Hmenu ul li
{
    background: #fff;
    height: 100%;
    line-height: 2;
    transition: background 0.3s ease;
    
}

.Hmenu ul li:hover
{
   background: rgba(0,0,0,0.1); 
 
}



.Hmenu ul li a
{
    display: block;
    padding: 0px 20px;
    text-decoration: none;
    color:#ce4942;
    font-family: helveticac;
    font-size: 1.4em;
}

.menu ul li a:hover
{
     color:#0489ce; 
}

.Hmenu article
{
    height: 200px;
    display: none;
    background: #fff;
}


.Hmenu article img
{
    height: 80%;
    width: 100%;
    object-fit: cover;
  
}



@media(max-width:768px)
{
    .menuHamburguesa
    {
         height: 50px;
         flex-direction: column;
     
    }
    
    
    .menuHamburguesa label
    {
        display: block;     
        
    }
    
    .Hmenu
    {
        position: absolute; 
       
        background: #ffffff;
        width:100%;
        margin-left: -100%;
        transition: all 0.5s;  
          
        top:40px;
    }
    
    
    
    .Hmenu ul{
        
        flex-direction: column; 
        background: #fff;       
        height: auto;
        justify-content: flex-start;
    }
    
    
    .Hmenu ul li {
         border-bottom: #0489ce solid 1px;
        text-align: center;
        width: 100%;
        height: 50px;
         line-height: 1;
    }
    
    .Hmenu ul li a
    {
         padding: 15px 20px;
    }
    
    
    #btn-menu:checked ~ .Hmenu {
        margin-left: 0;
    } 
    
 
    
}

/* _____________________________________________ FIN DE MODULO DE HAMBURGUESA */

#enTurno 
{
   
    color:#0489ce;
}


/************************************************ MODULO MEMBRETE */
.membrete
{  
    height: 50px;
    width:100%;
    display: flex;   
    justify-content: center;
    background: #fff;
    padding-bottom: 5px;
}


.membrete nav
{    
   
    height: 100%;
    display: flex;
    justify-content: flex-start; 
    padding-top: 10px;
    padding-right: 20px;
    
}


.membrete nav ul
{
    display: flex;
    list-style: none;    
}


.membrete nav ul li
{
    margin-left: 20px;
}


.membrete nav ul li a
{
     text-decoration: none;
    display: flex;
    justify-content: center;
   
    align-items: center;
    color:#0489ce; 

}

.membrete nav ul li a p{
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.membrete nav img{
   
    height: 30px;
    object-fit: contain;
    width:50px;
}


.membrete nav:nth-child(2)
{
    
    flex-flow: row-reverse;
}


@media(max-width:768px)
{    
    .membrete nav 
    {
        min-width: 50%;
        max-width:50%;
        padding: 0;
    }
    
    .membrete nav ul
    {
         
        width: 100%;
        margin: 0;
        padding: 0;
        justify-content: center;
        

    }
    
    
    .membrete nav ul li 
    {
        
        justify-content: center;

    }
    
    .membrete nav ul li a{
        font-size: x-small;
        width: 30px;
        height: 30px;
        padding: 20px;
        border:solid #ce4942 1px;
        border-radius: 100%;
        
        justify-content: center;
    }
    
    .membrete nav ul li a p
    {
        display: none;
    }
    
    .membrete nav ul li a img
    {
        height: 20px;
    }
    
}

   
/************************************************** MODULO PORTADA */
.portada
{   
   width:100%;
   height: 125px;
   background: #fff;
  
}

.portada img
{
    height: 100%;
    display: block;
    margin: auto;
    object-fit: contain;
   
}


/* MODULO PORTADA IMAGEN */

.portadaImagen
{
    height: 500px;
    width:100%;
    animation: pasarela 16s infinite ease alternate;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@keyframes pasarela {
    0%,40%
    {
        opacity: 1;
        background-image: url("../Arecursos/fotografias/IMG_5217-HDR.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    45%,50%
    {
        opacity: 0.5;
    }
    51%,70%
    {   opacity: 1;
        background-image: url("../Arecursos/fotografias/2.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

    }
    71%,75%
    {
        opacity: 0.5;
    }
    75%,100%
    {
        opacity: 1;
        background-image: url("../Arecursos/fotografias/3.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

    }
    
}

.portadaImagen img
{
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

@media(max-width:768px)
{
    .portada
    {
        margin-top: 50px;
    }
    
    .portadaImagen
    {
        height: 300px;
    }
}

/**************************************** MODULO DESTACADO */
.destacado
{
   
  
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  
}

.destacado section{
    border:solid  #ce4942 1px;
    border-radius: 10px;
    height: 350px;
    width:30%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.destacado section h2
{
    font-family: helveticac;
    text-align: center;
    color:#ce4942;
    font-weight: normal;
   
}

.destacado section img
{
    display: block;
    height: 200px;
    width:100%;
    border: solid dotted blue;
    object-fit: cover;
    object-position: center;
}

.destacado section a
{
    font-family: helveticac;
    text-decoration: none;
    color: #0489ce;
}

@media(max-width:768px){
    .destacado{
        height: auto;
        width: 100%;
        flex-direction: column;
          margin-top:20px;
    }
    
    .destacado section
    {
        width: 90%;
        margin: auto;
        margin-bottom: 10px;
    }
}


/***************************** MODULO DE CONTENIDO ****************************/

.contenido
{
   padding: 20px; 
   width: 100%;
}

.contenido article
{
    margin-top: 20px;
    padding:10px;
    padding-bottom: 30px;
    border: solid #ce4942 1px;  
    border-radius: 10px;
    width:100%;
}


.contenido article div
{
     display: flex;
}


.contenido article div img
{
    display: block;
    height: 200px;
    width:300px;
    object-fit: cover;
    object-position: center;
    background: lightgray;
}


.contenido article div section
{
    padding: 0px 20px;
}

.contenido article div section ul
{
    margin-left: 20px;
}

.contenido article div section ul li
{
    line-height: 1.5;
   
    margin-bottom: 10px;
    list-style: none;
}

.contenido article div section ul li::before
{   content: "•";
    color: #0489ce;
    display: inline-block; 
    width: 1em;
    margin-left: -1em
}

@media(max-width:768px)
{
    .contenido h2
    {
        text-align: center;
    }
    .contenido article div
    {
        flex-direction: column;
    }
    
    .contenido article div img
    {
        margin: auto;
        margin-bottom: 10px;
    }
    
     .contenido article div section>p
    {
        text-align: center;
    }
    

}


/***************************** MODULO DE CONTENIDO SERVICIOS **************************/

.contenidoServicios
{
   padding: 20px; 
   width: 100%;
}

.contenidoServicios article
{
    margin-top: 20px;
    padding:10px;
    padding-bottom: 30px;
    border: solid #ce4942 1px;  
    border-radius: 10px;
    
}


.contenidoServicios article div
{
     display: flex;
    
}

.contenidoServicios article div div img
{
            
             max-width:100%;
}


.paseDiapositivasCaja, .paseDiapositivas
{

    height: 300px;
    max-width:400px;
    min-width:400px;
 
}




.contenidoServicios>article
{
    width:70%;
    margin: auto;
    margin-bottom: 20px;
}


.paseDiapositivasCaja img, .paseDiapositivas img
{
    max-width: 100%;
    min-width: 100%;
    
    object-fit: cover;
    object-position: center;
    
}

.contenidoServicios article div section
{
    padding: 0px 20px;
    
}

.cuadroTextoServ
{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    
}



@media(max-width:768px)
{
    .contenidoServicios h2
    {
        text-align: center;
    }
    
    .contenidoServicios article>div
    {
        flex-direction: column;
        display: block;
        width:90%;
        align-items: center;
    
    }
    
    
    .paseDiapositivas, .paseDiapositivasCaja
    {
        max-width:100%;
        min-width: 100%;
        max-height: 100%;
    }


    .contenidoServicios>article
    {
        width:100%;
    }
    
    
    .contenidoServicios article div div
    {
        max-width:100%;
    }
    
    .contenidoServicio article div div img
    {
        border:solid;
    }
    
     .contenidoServicios article div section>p
    {
        text-align: center;
    }
    

}

/*********************** MODULO DE RESERVAS *****************************/

.formReservas
{
    padding: 10px;
    font-size: 1.1em;
}

.formReservas fieldset
{
    padding: 10px;
}



.btn-enviar
{
    border:solid;
    width:350px;
    margin: auto;
    line-height: 2;
    border-radius: 12px;
    padding: 5px;
    color:#fff;
    background: #ce4942;
    text-align: center;
    display: flex;
    justify-content: space-around;

}

.inputReservas
{
    font-size: 1em;
       height: 2em;
}

input, textarea
{
    border-radius: 5px;
    border:solid #0489ce 1px;
    color: #ce4942;
    background: rgb(235, 232, 232);
}

input::placeholder
{
    color:#ce4942;
}



@media(max-width:768px)
{
    .inputReservas, .formReservas textarea
    {
        display: block;
        min-width:80%;
        margin: auto;
    
    }
}


/*************** $NOSOTROS MODULO PIE IMAGEN ******/
.pieImagen
{
    display:flex;
    padding: 20px;
  
}


.pieImagenInfo
{
    padding:0px 20px;
     
}

.pieImagenInfo p a
{
 
    display: block;
    width: 100%;
}

@media(max-width:768px)
{
    .pieImagen
    {
        flex-direction: column-reverse;
        
      
    }
    
    .pieImagen img 
    {
        display: block;
        margin: auto;
        margin-bottom: 20px;
        max-width: 90%;
    }
    
    .pieImagenInfo
    {
        padding-bottom: 20px;
        display: flex;
        flex-direction: column-reverse;
    }
}