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


.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
}

/* 
.blanco .logotipo img{
    width: 75%;
} */



.cabecera-ayuda{
    position: relative;
    height: 121px;
}
.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: #e4e4e2;
    padding-top: 4px;
    padding-bottom: 4px;
}

.logotipo{
    text-align: center;
}
.logotipo img{
    width: 80%;

    transition: all 0.5s;
}


nav a{
    color: black;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    position: relative;
    width: 25%;
    float: left;
}
.menu-r{
    display: none;
}
.menu, .menu-r{
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}
.menu:hover, .activo, .menu-r:hover{
    font-weight: bold;
    color: black;
}


nav ul li:hover .menuSec{
    display: block;
}


.menuSec{
    position: absolute;
    top: 30px;
    left: -100%;
    z-index: 1000;
    background: white;
    width: 300%;
    padding: 12px 0;
    display: none;

    border-radius: 10px;
}
.menuSec ul li{
    width: 100%;
}
.menuS{
    text-align: center;
    padding: 12px 0;
}
.menuS:hover{
    font-weight: bold;
    color: black;
}


.datos{
    text-align: center;
    font-size: 18px;
}
.datos img{
    width: 30px;
}


.efecto{
    padding: 0;
}


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

.titulo{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}


.cuadro{
    text-align: center;
}
.cuadro img{
    width: 90%;
    height: 250px;

    border-radius: 20px;

    object-fit: cover;
}
.cuadro strong{
    width: 100%;
    font-weight: 600;
    text-align: center;
    font-size: 19px;
    line-height: 29px;
    /* color: red; */
    display: inline-block;
    padding: 7px 20px;
}


.imagen img{
    width: 100%;
}


.fondo{
    position: relative;
    background: url(../images/fondo.jpeg) no-repeat center center;
    background-size: cover;
    padding-top: 300px;
    padding-bottom: 300px;
    margin-bottom: 30px;
}
.fondo .container{
    position: relative;
    z-index: 2;
}
.fondo-negro{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
}
.textoFondo{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 2px black;
    color: white;
}


.seccion{
    font-size: 20px;
}

.imagen img{
    width: 100%;
}


.otroCuadro strong{
    background: #30383D;
    width: 100%;
    text-align: center;
    color: white;
    display: inline-block;
    padding: 12px 0;
}
.otroCuadro img{
    width: 100%;
}


.imagenes{
    text-align: center;
    padding: 30px 0;
}
.imagenes img{
    width: 24%;
    height: 320px;
    cursor: pointer;
    margin-bottom: 10px;

    object-fit: cover;
}


.imagenes2{
    text-align: center;
    padding: 30px 0;
}
.imagenes2 img{
    width: 100%;
}



.negro{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    display: none;
}
.cerrar{
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 100000000;
    background: white;
    width: 40px;
    height: 40px;
    text-align: center;
    color: red;
    font-size: 27px;
    font-weight: bold;
    cursor: pointer;

    border-radius: 50%;
}
.cerrar:hover{
    background: red;
    color: white;
}
.images{
    height: 80vh;
    margin-top: 10vh;
}


.form-group{
    margin-bottom: 12px;
}



footer{
    background: #30383D;
    color: white;
    font-size: 17px;
    line-height: 27px;
    padding-top: 30px;
    padding-bottom: 30px;
}
footer strong{
    width: 100%;
    display: inline-block;
    font-size: 23px;
    margin-bottom: 22px;
}
footer img{
    width: 30px;
}
footer a{
    color: white;
}
footer  iframe{
    width: 100%;
    height: 190px;
}


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

}

@media screen and (max-width:1200px){
    .cabecera-ayuda{
        display: none;
    }
    .cabecera{
        position: relative;
    }
}

@media screen and (max-width:992px){
    .images{
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width:768px){
    nav{
        margin: 20px 0 !important;
    }
    .imagenes img{
        width: 48%;
        height: 400px;
    }
}

@media screen and (max-width:576px){
    .menu-r{
        display: block;
    }
    nav ul{
        display: none;
    }
    nav ul li{
        width: 100%;
    }
    .menu{
        padding: 8px 0;
    }
    .menuSec{
        position: relative;
        top:0;
        left: 0;
        width: 100%;
        display: block;
    }
    .menuS{
        background: white;
        color: blue;
    }
    .imagenes img{
        width: 90%;
        height: 400px;
        margin:0 5% 12px 5%;
    }
}