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

header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding-top: 12px;
    padding-bottom: 100px;

    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.9) 30%,
        rgba(255, 255, 255, 0.7) 45%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0.3) 80%,
        rgba(255, 255, 255, 0.15) 90%,
        rgba(255, 255, 255, 0) 100%
    );
}

.logotipo img{
    width: 90%
}


.leyenda{
    text-align: center;
    font-size: 35px;
    font-weight: bold;
}



.datos{
    font-size: 20px;
    text-align: right;
}
.datos strong{
    width: 100%;
    color: #b7212c;
    font-size: 22px;
    display: inline-block;
}
.datos img{
    width: 30px;
}



.efecto{
    position: relative;
    background: url(../images/fondo.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 250px;
    padding-bottom: 120px;
}

.fondo-negro{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(255,255,255,0.8);
    width: 100%;
    height: 100%;
}

.efecto .container{
    position: relative;
    z-index: 2;
}


.efecto h1{
    line-height: 65px;
    font-weight: bold;
}
.efecto span{
    width: 100%;
    display: inline-block;
}
.s1{
    font-size: 60px;
}
.s2{
    font-size: 44px;
    color: #0f4c87;
}
.s3{
    font-size: 60px;
}
.efecto p{
    font-size: 25px;
    font-weight: bold;
    text-shadow: 2px 2px 2px white;
}
.efecto strong{
    font-size: 22px;
    color: #015089;
}


.imagen img{
    width: 100%;
}


.formulario-contacto {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
}
.formulario-contacto h3 {
    font-weight: 700;
    color: #21325e;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: scale(1.05);
}
.icono-whatsapp {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}




.productos{
    background: #015089;
    color: white;
    font-size: 19px;
    line-height: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.importante{
    font-size: 22px;
    font-weight: bold;
}

.productos strong{
    width: 100%;
    text-align: center;
    font-size: 32px;
    display: inline-block;
    margin-bottom: 40px;
}


.imagenes img{
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    object-fit: cover;
}
/* Asigna diferentes alturas para dar ese efecto desigual */
/* .imagenes .col-4:nth-child(1) img:nth-child(1) { height: 220px; }
.imagenes .col-4:nth-child(1) img:nth-child(2) { height: 180px; }
.imagenes .col-4:nth-child(1) img:nth-child(3) { height: 250px; }

.imagenes .col-4:nth-child(2) img:nth-child(1) { height: 200px; }
.imagenes .col-4:nth-child(2) img:nth-child(2) { height: 260px; }
.imagenes .col-4:nth-child(2) img:nth-child(3) { height: 190px; }

.imagenes .col-4:nth-child(3) img:nth-child(1) { height: 240px; }
.imagenes .col-4:nth-child(3) img:nth-child(2) { height: 180px; }
.imagenes .col-4:nth-child(3) img:nth-child(3) { height: 230px; } */


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


.texto{
    background: #015089;
    font-size: 20px;
    color: white;
    padding: 50px;
}
.texto strong{
    width: 100%;
    font-size: 27px;
    display: inline-block;
    margin-bottom: 20px;
}

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




.marcas h3 {
    color: #21325e;
    font-weight: 700;
}
.linea {
    width: 80px;
    height: 3px;
    background-color: #21325e;
}
.slider-marcas {
    overflow: hidden;
    position: relative;
}
.slide-track {
    display: flex;
    width: calc(250px * 16);
    animation: scroll 40s linear infinite;
}
.slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.slide img {
    width: 150px;
    height: auto;
    /* filter: grayscale(100%); */
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}
.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 8));
    }
}



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

}

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

@media screen and (max-width:992px){
    header{
        position: relative;
        padding-bottom: 10px;
    }
}

@media screen and (max-width:768px){
    .datos{
        text-align: center;
    }
    .s1{
        font-size: 45px;
    }
    .s2{
        font-size: 36px;
    }
    .s3{
        font-size: 45px;
    }
    .efecto{
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (max-width:576px){
    .img{
        height: 350px;
    }
}


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