﻿body{
    background: url(../images/fondo.webp) no-repeat center center fixed;
    background-size: cover;
    font-family: "Montserrat", sans-serif;
}

.cabecera{
    background: black;
}

.logotipo img{
    width: 100%;
}

nav a{
    color: white;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    float: left;
}
.menu{
    font-size: 20px;
    text-align: center;
    padding: 0 40px;
}
.menu:hover{
    color: #FFCF00;
    font-weight: bold;
}

.datos{
    text-align: center;
    color: white;
    font-size: 21px;
}
.datos a{
    color: white;
}
.datos strong{
    background: #FFDB0F;
    font-size: 23px;
    color: black;
    padding: 4px;

    border-radius: 10px;
}
.datos p{
    margin-top: 4px;
    margin-bottom: 4px;
}
.datos img{
    width: 30px;
}


.efecto{
    background: url(../images/efecto.webp) no-repeat center center / cover;
    font-family: "Kanit", sans-serif;
    color: white;
    text-transform:uppercase;
    font-weight: bold;
    font-size: 50px;
    line-height: 60px;
    text-shadow: 2px 2px 2px black;
    padding: 50px 0;
}
.efecto strong{
    font-size: 50px;
    color: #FFDB0F;
}
.efecto ul{
    list-style: none;
}
.efecto img{
    height: 270px;
}

.areas div{
    padding-left: 0;
    padding-right: 0;
}


.area{
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 12px 0;
}
.area1{background: #fff3c0;}
.area2{background: #ffe570;}
.area3{background: #ffd621;}
.area4{background: #FFCF00;}


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

.titulo{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 1px 1px 0px white;
    margin-bottom: 50px;
}


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




.marginBottom{
    margin-bottom: 100px;
}


.textoP{
    font-size: 18px;
    line-height: 23px;
}
.textoP strong{
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}
.tituloP{
    width: 100%;
    font-size: 30px;
    color: blue;
    display: inline-block;
}
.textoP span{
    width: 100%;
    color: green;
    font-size: 22px;
    display: inline-block
}

.imagenP img{
    height: 200px;
}


.btn-verde{
    background: green;
    color: white;
    margin-top: 20px;
}



.nosotros{
    background: linear-gradient(135deg, #fff9c4, #fbc02d);
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 30px;
}


.seccion{
    font-size: 20px;
    line-height: 30px;
}
.seccion strong{
    width: 100%;
    font-size: 27px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.imagen img{
    width: 100%;

    border-radius: 30px;
}


.clientes{
    background: white;
    padding-top: 40px;
    padding-bottom: 40px;
}


.imagenesClientes{
    text-align: center;
}
.imagenesClientes img{
    margin: 0 20px 30px;
}



.galeria{
    margin-bottom: 30px;
}

.galeria img{
    width: 100%;
    height: 320px;
    margin-bottom: 20px;

    border-radius: 30px;

    object-fit: cover;
}


footer{
    background: black;
    color: white;
    text-align: center;
    font-size: 22px;
    padding-top: 20px;
    padding-bottom: 20px;
}
footer a{
    color: white;
}
footer img{
    width: 30px;
}


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

}

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

}

@media screen and (max-width:992px){
    .efecto img{
        width: 45%;
        height: auto;
    }
}

@media screen and (max-width:768px){
    nav{
        margin: 20px 0 !important;
        display: none;
    }
    nav ul li{
        width: 100%;
    }
    .datos{
        margin: 20px 0 0 0;
    }
    .efecto strong{
        font-size: 40px;
    }
    .area{
        font-size: 20px;
    }
    .imagenP img{
        width: 90%;
        height: auto !important;
    }
}

@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;
}
.tel{
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 1000;
    background: blue;
    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
}
