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

.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding-top: 10px;
    padding-bottom: 80px;

    background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0));
    background: linear-gradient(to bottom, rgba(255,255,255,1) 80%, rgba(255,255,255,0));
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 30%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.6) 70%,
        rgba(255, 255, 255, 0.4) 80%,
        rgba(255, 255, 255, 0.2) 90%,
        rgba(255, 255, 255, 0.1) 95%,
        rgba(255, 255, 255, 0) 100%
    );
    /* backdrop-filter: blur(8px); */

    transition: all 1s;

}
.cabecera.scrolled {
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Sombra opcional para efecto flotante */
    padding-bottom: 10px;
}
.cabecera.scrolled .logotipo img{
    width: 70%;
}

.logotipo img{
    width: 100%;

    transition: all 1s;
}


nav a{
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 33.33%;
    float: left;
}
.menu{
    color: #033a6d;
    font-weight: bold;
    text-align: center;
    font-size: 20px;
}
.menu:hover{
    font-weight: bold;
}


.carrito{
    text-align: center;
    font-size: 22px;
}


.btn-solicita{
    font-weight: bold;
    font-size: 20px;
}




.efecto{
    padding: 0;
}


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

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


.ser{
    text-align: center;
}
.ser img{
    width: 90%;
    height: 270px;

    object-fit: cover;

    border-radius: 50%;
}
.ser strong{
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    display: inline-block;
    margin: 12px 0;
}


.azulServicios{
    background: #033a6d;
}

.textoServicio{
    background: #033a6d;
    color: white;
    font-size: 30px;
}
.textoServicio strong{
    width: 100%;
    display: inline-block;
}

.imagen{
    height: 350px;
    padding: 0;
}
.imagen img{
    width: 100%;
    height: 100%;

    object-fit: cover;
}



.seccion{
    background: #f7f7f7;
    font-size: 18px;
    padding: 45px;
}
.seccion strong{
    width: 100%;
    font-size: 26px;
    display: inline-block;
    margin-bottom: 20px;
}


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



.clientes{
    background: url(../images/fondo.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
    margin: 40px 0;
}


.slick2{
    /* background: white; */
    padding-top: 12px;
    padding-bottom: 12px;
}
.item2{
    text-align: center;
}
.item2 img{
    width: 85%;
    height: auto;
    display: inline-block !important;
    margin: 0 15%;
}


.sati{
    text-align: center;
    font-size: 18px;
}
.sati img{
    height: 120px;
}
.sati strong{
    width: 100%;
    font-weight: 500;
    font-size: 22px;
    display: inline-block;
    margin: 20px 0;
}


.clientes2{
    padding-top: 50px;
    padding-bottom: 50px;
}



.grisExtras{
    background: #f7f7f7;
}

.img2{background: url(../images/2.jpg) no-repeat center center;background-size: cover;}
.img3{background: url(../images/3.jpg) no-repeat center center;background-size: cover;}
.img4{background: url(../images/4.jpg) no-repeat center center;background-size: cover;}
.img5{background: url(../images/5.jpg) no-repeat center center;background-size: cover;}

.textoExtra{
    font-size: 20px;
    padding: 30px;
}
.textoExtra strong{
    width: 100%;
    font-size: 24px;
    display: inline-block;
    margin-bottom: 12px;
}



footer{
    background: #033a6d;
    color: white;
    font-size: 18px;
    padding-top: 40px;
    padding-bottom: 40px;
}

footer strong{
    width: 100%;
    font-size: 23px;
    display: inline-block;
    margin-bottom: 20px;
}

footer img{
    width: 30px;
}

footer a{
    font-size: 15px;
    color: white;
}

footer iframe{
    width: 100%;
    height: 140px;
}


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

}

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

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

}

@media screen and (max-width:768px){
    .textoServicio{
        text-align: center !important;
        padding: 20px 0;
    }
    .img{
        height: 350px;
    }
}

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