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

.cabecera-ayuda{
    height: 155px;
}
.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    
    background: #f7f7f7;
}

.logotipo img{
    width: 80%;
}


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

    border-radius: 3px;
}
.menu:hover, .activo{
    background: black;
    color: white;
}


.datos{
    text-align: end;
    font-size: 20px;
}
.datos img{
    width: 30px;
}


.leyenda{
    background: #f0e4b2;
    background: #57b465;
    background: #da5416;
    background: #0301d1;
    color: white;
    text-align: center;
    font-size: 24px;
}
.leyenda strong{
    color: #ffd81b;
    font-size: 27px;
    text-shadow: 2px 2px 2px black;
}
.leyenda img{
    height: 100px;
}
.leyenda span{
    width: 100%;
    font-size: 13px;
    display: inline-block;
}


.efecto{
    padding: 0;
}


.contenido{
    padding-top: 40px;
    padding-bottom: 100px;
}


.titulo{
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    text-decoration: underline;
    color: #57b465;
    color: blue;
    margin-bottom: 30px;
}
.t2{
    font-weight: bold;
    color: black;
    text-decoration: none;
    color: #57b465;
}


.fondo1{
    background: url(../images/fondo2.webp) no-repeat center center;
    background-size: cover;
}


.seccion{
    background: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    line-height: 30px;
    padding: 30px;
}
.seccion strong{
    font-size: 25px;
    line-height: 45px;
}


.imagen video, .imagen iframe, .imagen img{
    width: 100%;

    border-radius: 20px;
}


.ubicacion{
    background: #f7f7f7;
    padding-top: 30px;
    padding-bottom: 30px;
}

.textoU{
    font-size: 23px;
    line-height: 33px;
    padding: 40px;
}
.textoU strong{
    color: #57b465;
}
.textoU img{
    width: 80%;

    border-radius: 20px;
}


.cuadro{
    background: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    padding: 20px;

    border-radius: 20px;
}
.cuadro img{
    width: 100%;
    margin-bottom: 12px;

    border-radius: 20px;
}

.form-group{
    margin-bottom: 20px;
}


.faqs{
    font-size: 22px;
    line-height: 32px;
}


footer{
    background: #57b465;
    text-align: center;
    color: white;
    font-size: 18px;
    line-height: 28px;
    padding-top: 30px;
    padding-bottom: 30px;
}
footer img{
    width: 40px;
    margin: 0 10px;
}


@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){
    .datos{
        text-align: center;
    }
}

@media screen and (max-width:768px){
    .menu-r{
        display: block;
    }
    nav ul{
        display: none;
    }
    nav{
        margin: 20px 0 !important;
    }
    nav ul li{
        width: 100%;
    }
    .menu{
        padding: 8px 0;
    }
    .seccion{
        padding: 10px;
    }
    .logotipo{
        text-align: center;
    }
}

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