﻿body{
    font-family: "Montserrat", sans-serif;
}



.cabecera-ayuda{
    position: relative;
    height: 91px;
}


.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    background: white;

    box-shadow:0 10px 20px rgba(0,0,0,.25);
}


.logotipo{
    position: relative;
    text-align: center;
}
.logotipo img{
    position: absolute;
    top: 0;
    left: 40px;
    z-index: 1000;
    width: 70%;
}

nav a{
    text-decoration: none;
    color: black;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 20%;
    float: left;
}

.menu{
    text-align: center;
    color: #a28226;
    font-size: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.menu:hover{
    font-weight: bold;
}

.datos{
    text-align: center;
    font-size: 18px;
    line-height: 20px;
    margin-top: 9px;
}
.datos img{
    width: 30px;
}


.efecto{
    padding: 0;
}


.productos{
    padding-top: 30px;
    padding-bottom: 30px;
}

.titulo{
    color: #a28226;
    text-align: center;
    font-size: 33px;
    font-weight: bold;
    margin-bottom: 40px;
}

.subtitulo{
    font-size: 20px;
    color: gray;
    text-align: center;
    margin-bottom: 30px;
}

.cuadro{
    text-align: center;
    font-size: 22px;
}
.cuadro img{
    width: 100%;
    height: 320px;
    object-fit: cover;

    border-radius: 12px;
}
.cuadro strong{
    width: 100%;
    display: inline-block;
    margin: 20px 0;
}


.nosotros{
    padding-top: 40px;
    padding-bottom: 40px;
}



.seccion{
    background: #162757;
    color: white;
    font-size: 20px;
    padding: 40px;
}
.seccion strong{
    width: 100%;
    font-size: 27px;
    display: inline-block;
    margin-bottom: 30px;
}

.imagen img{
    width: 100%;
}

.img1{
    background: url(../images/1.jpg) no-repeat center center;
    background-size: cover;
}


.texto{
    font-size: 22px;
}
.texto strong{
    width: 100%;
    color: #162757;
    display: inline-block;
    margin-bottom: 20px;
}


@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){

}

@media screen and (max-width:992px){

}

@media screen and (max-width:768px){

}

@media screen and (max-width:576px){
    
}



.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #24d366;
    font-weight: bold;
    font-size: 20px;
    color: white;
    padding: 6px 17px;
    border-radius: 20px;

    animation-name: pulse;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 0s;
    animation-iteration-count: 100;
}
@keyframes pulse {
    from,to {
        transform: scale3d(1,1,1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }
}

.pulse {
    animation-name: pulse
}