* {
    box-sizing: border-box;
}

:root {
    /*COLORES*/
    --blanco: #FFFFFF;
    --negro: #27221F;
    --grisOscuro: #7D7E82;
    --grisClaro: #BBBBBA;

    /*MEDIDAS*/
    --ancho: 1100px;
    --margenLateral: calc((100vw - var(--ancho))/2);
    --altoContenido: calc(100vh - 170px);
  }

html {
    font-size: 10px;
    font-family: 'Open Sans', sans-serif;
  }

body {
    background-color: var(--blanco);
    width: 100%;
    height: 100vh;
    margin: 0; 
    padding-top: 40px;
    padding-left: var(--margenLateral);
    padding-right: var(--margenLateral);
    padding-bottom: 0px;
}


/*ESTILO DEL MENU*/
.navbar{
    display: block;
    background-color: var(--blanco);
}

.footer{
    display: block;
    background-color: var(--blanco);
}

.contenido{
    display: block;
    background-color: var(--blanco);
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 0;
    text-align: center;
    height: 100%;
    width: 100%;
}

ul:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.socialMenu{
    position: absolute; 
    right: 0; 
    color: white; 
    top: 0; 
    height: 100%; 
    width: 100px; 
    padding-top: 0; 
    padding-bottom: 0; 
    font-size: 0; 
    text-align: right;    
}

.socialMenu:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;   
}

.menuLink {
    display: inline-block;
    vertical-align: middle;
    color: var(--grisClaro);
    font-size: 1rem;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    margin: 0;
    margin-left: 10px;
    margin-right: 10px;
    padding: 0;
    transition: all .2s ease-in-out;
}

.menuLink:hover{
    color: var(--negro);
    transform: scale(1.1);
    -ms-transform: scale(1.1); /* IE 9 */
    -webkit-transform: scale(1.1); /* Safari 3-8 */ 
}

.menuLink.active{
    color: var(--negro); 
}

#menuPop{
    display: none; 
    position: absolute; 
    top: 80; 
    left: 0; 
    right: 0; 
    z-index: 2; 
    background-color: var(--blanco);
}

#menuBarras{
    display: block; 
    font-size: 3.5rem; 
    text-decoration: none;  
    color: var(--negro);
}

.contenedorLogoMobile{
    height: 100%; 
    width: 80px; 
    padding-top: 0; 
    padding-bottom: 0; 
    display: block; 
    margin: auto;
}

.logoMobile{
    display: block; 
    text-decoration: none;  
    color: var(--blanco);
}

.contenedorLogoDesktop{
    position: absolute; 
    left: -15px; 
    color: white; 
    top: 0; 
    height: 100%; 
    width: 80px; 
    padding-top: 0; 
    padding-bottom: 0;
}

.logoDesktop{
    display: block; 
    text-decoration: none;  
    color: var(--blanco);
}

#buscar{
    font-size: 1.2rem; 
    color: var(--negro); 
    text-decoration: none; 
    font-weight: 700; 
    border-bottom: 1px solid var(--negro); 
    padding-top: 5px; 
    padding-bottom: 5px; 
    padding-left: 50px; 
    padding-right: 50px;
}
/*FINALIZA ESTILO MENU*/

/*ESTILO GENERAL*/
p.footerInfo{
    display: inline-block;
    color: var(--grisOscuro);
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    margin: 0;
    margin-left: 5px;
    margin-right: 10px;
    margin-top: 10px;
    padding: 0;

}

h3{
    color: var(--negro);
    font-size: 1.5rem;
    text-align: justify;
    text-decoration: none;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    margin: 0;
}

h3::selection{
    color: var(--blanco);
    background: var(--negro);
}

p{
    color: var(--grisOscuro);
    text-align: justify;
    text-decoration: none;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
}

p::selection{
    color: var(--blanco);
    background: var(--negro);
}

img{
    cursor: pointer;
}


/*TERMINA ESTILO GENERAL*/

/*ICONOS*/
.fa {
    font-size: 30px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
}
  
.fa:hover {
    opacity: 0.7;
}
  
.fa-facebook {
    color: black;
}

.fa-instagram {
    color: black;
}
/*TERMINA ICONOS*/

/*ANIMACIONES*/

.menuLink div{
    display: block;
    margin: auto;
    margin-top: 8px;
    width: 7px;
    height: 7px;
    background: var(--grisClaro);
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.menuLink:hover div{
    display: block;
    margin: auto;
    margin-top: 8px;
    width: 22px;
    height: 2px;
    background: var(--negro);
    border-radius: 0;
}

.menuLink.active div{
    display: block;
    margin: auto;
    margin-top: 8px;
    width: 22px;
    height: 2px;
    background: var(--negro);
    border-radius: 0;
}
/*TERMINAN ANIMACIONES*/

/*ESTILO SCROLLBAR*/
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--blanco); 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}
/*TERMINA SCROLLBAR*/


/*CELULARES*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
@media only screen and (max-width: 899px) {
    .mobile{
        display: block;
    }
    
    .desktop{
        display: none;
    }

    body {
        width: 100%;
        min-height: 500px;
        margin: 0; 
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .navbar{
        height: 80px;
        width: 100%;
        position: relative;
        padding-left: 0;
        padding-right: 0;
    }
    
    .footer{
        min-height: 50px;
        width: 100%;
        position: relative;
        background-color: var(--blanco);
    }
    
    .contenido{
        width: 100%;
        position: relative;
        min-height: 370px;
        background-color: var(--blanco);
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 3%;
        padding-right: 3%;
    }

    .menuLinkMobile{
        display: block;
        color: var(--negro);
        font-size: 2rem;
        letter-spacing: 1px;
        text-align: center;
        text-decoration: none;
        font-family: Montserrat;
        font-style: normal;
        font-weight: 400;
        margin: 0;
        margin-left: 10px;
        margin-right: 10px;
        padding: 0;
        height: 60px;
    }

    p{
        font-size: 1.2rem;
    }

    .logoHomeMobile{
        display: block; 
        height: auto; 
        width: 100%; 
        align-items: none;
        background-image: url(imagenes/fondoLogoMobile.PNG);
        background-position: center;
        background-repeat: no-repeat;
        margin-bottom: 15px;
    }

    p.footerInfo{
        display: block;
        text-align: left;
    }


}


/*DESKTOP*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
@media only screen and (min-width: 900px) {
    .mobile{
        display: none;
    }
    
    .desktop{
        display: block;
    }
    
    body {
        width: 100%;
        height: 100vh;
        margin: 0; 
        padding-top: 40px;
        padding-left: var(--margenLateral);
        padding-right: var(--margenLateral);
        padding-bottom: 0px;
    }

    .navbar{
        height: 80px;
        width: var(--ancho);
        position: absolute;
        top: 40px;
        padding-left: 16%;
        padding-right: 0;
    }
    
    .footer{
        height: 50px;
        width: var(--ancho);
        position: absolute;
        bottom: 0;
    }
    
    .contenido{
        width: var(--ancho);
        height: var(--altoContenido);
        position: absolute;
        top: 120px;
        bottom: 50px;
    }

    p{
        font-size: 1rem;
    }

    /*ANIMACIÓN INICIAL*/
@-webkit-keyframes fadeIn { from { opacity:0; padding-left: 50px;} to { opacity:1; padding-left: 0px;} }
@-moz-keyframes fadeIn { from { opacity:0; padding-left: 50px;} to { opacity:1; padding-left: 0px;} }
@keyframes fadeIn { from { opacity:0; padding-left: 50px;} to { opacity:1; padding-left: 0px;} }

.fade-in {
    opacity:0;  /* make things invisible upon start */
    padding-left: 50px;
    -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;
  
    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
  
    -webkit-animation-duration:.2s;
    -moz-animation-duration:.2s;
    animation-duration:.2s;

    -webkit-animation-delay: .1s;
    -moz-animation-delay: .1s;
    animation-delay: .1s;
}


}

/*DESKTOP EX*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
@media only screen and (min-width: 1600px) {
      
    p{
        font-size: 1.2rem;
    }

    .navbar{
        display: block;
        padding-left: 14%;
        padding-right: 0;
        background-color: var(--blanco);
    }

}