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

.cabecera-ayuda{
    height: 172px;
}
.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    /* background: #fffde0; */
    background: url(../images/fondo.jpg) no-repeat center center / cover;
    background: white;
    padding-top: 3px;
    padding-bottom: 3px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* sombra suave */
}

.logotipo img{
    width: 100%;
}

.leyenda{
    font-size: 33px;
}
.leyenda strong{
    width: 100%;
    display: inline-block;
}


.datos{
    text-align: center;
    font-size: 18px;
}
.datos img{
    width: 30px;
}
.datos p{
    margin-bottom: 0;
}
.datos strong{
    background: white;
    font-size: 23px;
    padding: 4px 10px;
    border-radius: 20px;
}


.menuSup{
    background: white;
}
nav a{
    color: black;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 16.66%;
    float: left;
}
.menu-r{
    display: none;
}
.menu, .menu-r{
    font-size: 19px;
    text-align: center;
    padding: 12px 0;
    cursor: pointer;
}
.menu:hover{
    font-weight: bold;
}


.efecto{
    padding: 0;
}

.seccion{
    font-size: 18px;
    padding: 40px;
}
.seccion strong{
    font-size: 30px;
}

.textoVerde{
    color: green;
    font-weight: bold;
}
.rojo{
    color: red;
    font-size: 18px;
}

.imagen img{
    width: 100%;
}

.i1 img{border-radius: 200px 0 0 100px;}
.i2 img{border-radius: 0 200px 100px 0;}


.blanco{
    background: white;
    font-size: 18px;
    padding-top: 30px;
    padding-bottom: 30px;
}


.titulo{
    text-align: center;
    font-size: 30px;
    color: #873852;
    font-weight: bold;
}


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


.imagenes{
    text-align: center;
}
.imagenes img{
    width: 31.33%;
    height: 340px;
    object-fit: cover;
    margin: 0 0.5% 20px;
}


.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 15px;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
    text-decoration: none;
    color: white;
}


footer{
    background: url(../images/fondo-footer.jpg) no-repeat center center / cover; 
    color: white;
    font-size: 18px;
    line-height: 28px;
    padding-top: 30px;
    padding-bottom: 30px;
}
footer img{
    width: 30px;
}
footer strong{
    width: 100%;
    font-size: 23px;
    display: inline-block;
    margin-bottom: 20px;
}
footer a{
    color: white;
}
footer iframe{
    width: 100%;
    height: 250px;
}


@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){
    .menu-r{
        display: block;
    }
    nav ul{
        display: none;
    }
    nav ul li{
        width: 100%;
    }
    .imagenes img{
        width: 98%;
    }
    .leyenda{
        text-align: center;
    }
}

@media screen and (max-width:768px){
    .seccion{
        padding: 12px;
    }
}

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