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


.sinEnlace{
    text-decoration: none;
    color: black;
}

#nosotros, #porque-elegirnos, #contacto{
    scroll-margin-top: 164px;
}


.fijo{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
}
.fijo-ayuda{
    height: 164px;
}


.cabecera{
    background: white;
}

.cintillo{
    background: #ff004c;
    color: white;
    text-align: center;
    font-size: 22px;
}
.cintillo a{
    color: white;
    text-decoration: none;
}

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

nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 25%;
    float: left;
}
.menu{
    text-align: center;
    font-size: 17PX;
    padding: 12px 0;
}
.menu:hover{
    font-weight: bold;
}
.dosM{
    padding: 0;
}


.w{
    background: #24d366;
    text-align: center;
    font-size: 25px;
}
.w:hover{
    font-weight: bold;
}
.w img{
    height: 30px;
}




.efecto{
    padding: 0;
}


.textoEfecto{
    background: #535948;
    background: #ddd;
    font-size: 22px;
    padding: 40px;
}
.textoEfecto strong{
    font-size: 33px;
}


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

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

.imagen img{
    width: 100%;
}

.texto{
    font-size: 22px;
}


.leyenda1{
    background: gray;
    color: white;
    text-align: center;
    font-size: 33px;
    font-weight: bold;
}
.leyenda1 img{
    height: 100px;
}


footer{
    background:black;
    color: white;
    padding-top: 40px;
    padding-bottom: 40px;
}
footer p{
    margin-bottom: 4px;
}
footer img{
    width: 30px;
}
footer strong{
    width: 100%;
    font-size: 25px;
    display: inline-block;
    margin-bottom: 30px;
}
footer a{
    color: white;
}


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

}

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

@media screen and (max-width:992px){
 nav{
        margin: 20px 0 !important;
    }
}

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

@media screen and (max-width:576px){
    nav ul li{
        width: 50%;
    }
    .cintillo strong{
        width: 100%;
        display: inline-block;
    }
}


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