@import url(./info.css);
@import url(./menu.css);
@import url(./main.css);
@import url(./footer.css);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    font-family: 'Merriweather', serif;
    font-weight: bolder;
}
header{
    transition-duration: 300ms;
    position: fixed;
    width: calc( 100% - 2rem);
    margin-top: 14px;
    height: 80px;
    color: rgb(255, 255, 255);
    left: 0;
    z-index: 100;
    border: 1px solid rgb(255, 255, 255);
    margin-left: 1rem;
    margin-right: 1rem;
}
.contenedor{
    width: 98%;
}
header .contenedor{
    display: table;
}
#logo{
    margin-top: 25px;
    margin-left: 30px;
}
/* boton de ver mas */
.see-more-btn {
    text-transform: uppercase;
    /* font-family: "Trajan Pro", serif; */
    font-weight: 600;
    font-size: 1.5rem;
    padding: 5px 0;
    position: relative;
    margin: 20px auto !important;
    display: table;
    cursor: pointer;
    color: #452112;
    text-decoration: none;
}
.see-more-btn:hover{
    animation: bounce 1s;
}
.see-more-btn:before {
    width: 100%;
    height: 1px;
    background: #452112;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
}
.see-more-btn .dots {
    /* font-family: "Ubuntu", sans-serif; */
    font-size: 1.5rem;
    color: #452112;
    /* position: absolute;
    bottom: -12px; */
    /* left: 24px; */
    display: block;
    text-align: center;
}
.imgMore{
    width:150px;
}
@media (max-width:540px){
    header{
        height: 60px;
    }
    header label{
        margin-top: 0.05em;
    }
}
.contenedor{
    width: 100%;
}
section{
    width: 100%;
}
header .contenedor{
    /* display: table; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:100%;
}
header.sticky label {
    transition-duration: 500ms;
    margin-top: 0.06em;
    font-size: 32px;
    cursor: pointer;
}
.pushReleaseFromRight { animation-name: pushReleaseFromRight }
@keyframes pushReleaseFromRight {
    from { transform: translateX(100%) }
    30% { transform: translateX(-100px) }
}
#firma:hover{
    transform: scale(1.2);
}
#firma{
    transition: all 0.5s linear 0.2s;
}
.logo-image{
    display:none;
}
.logo{
    /* content:url("../img/intro2.png"); */
}
.logo .logo-image{
    display: block;
    /* height:60px; */
    height: 146px;
}
@media(max-width:1176px){
    #logo{
        margin-top: 8px;
        margin-left: 30px;
    }
    .logo{
        content:url("../img/intro3.png");
    }
}
.vermasuno:hover,
.vermasdos:hover,
.vermastres:hover{
    animation: bounce 1s;
}
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }
    40% {
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -6px, 0);
    }
    70% {
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -4px, 0);
    }
    90% {
        
    }
}