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


.blanco .logotipo img{
    width: 60%;
}

.cabecera-ayuda{
    height: 160px;
}
.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #8513ac;
    padding-top: 6px;
    padding-bottom: 6px;
}

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

    transition: all 1s;
}



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


.datos{
    text-align: center;
    font-size: 20px;
    color: white;
}
.datos div{
    width: 100%;
    margin: 12px 0;
    display: inline-block;
}



.efecto{
    padding: 0;
}


.servicios{
    background: #f4f3fa;
    padding-top: 50px;
    padding-bottom: 50px;
}


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


.ser{
    font-size: 20px;
}
.ser strong{
    width: 100%;
    text-align: center;
    font-size: 23px;
    color: #8513ac;
    display: inline-block;
    margin: 20px 0;
}
.ser img{
    width: 100%;
    height: 300px;

    border-radius: 50%;

    object-fit: cover;
}



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

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


.imagen img{
    width: 100%;

    border-radius: 260px 0 0 120px;
}
.diferente img{
    border-radius: 0 260px 120px 0 !important;
}
.imagen2 img{
    width: 100%;
}


footer{
    background: black;
    color: white;
    font-size: 17px;
    padding-top: 12px;
    padding-bottom: 12px;
}


@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){
    .blanco .logotipo img{
        width: 90%;
    }
    .seccion{
        padding: 10px;
    }
}

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

@media screen and (max-width:576px){
    nav ul{
        display: none;
    }
    nav ul li{
        width: 100%;
    }
    .menu-r{
        display: block;
    }
    .menu{
        padding: 6px 0;
    }
}


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