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


.cabecera-ayuda{
    height: 120px;
}
.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: #002959;
}
.logotipo img{
    width: 90%;
}

nav a{
    color: white;
    text-decoration: none;
}
nav ul{
    list-style: none;
}
nav ul li{
    position: relative;
    width: 25%;
    float: left;
}
.menu-r{
    display: none;
}
.menu, .menu-r{
    width: 100%;
    color: white;
    text-align: center;
    font-size: 19px;
    padding: 14px 0 15px;
    cursor: pointer;
}
.dosM{
    padding: 0;
}
.menu:hover{
    color: white;
    font-weight: bold;
}

nav ul li:hover .menuSec{
    display: block;
}

.menuSec{
    position: absolute;
    top: 40px;
    left: -60%;
    z-index: 100;
    width: 200%;
    display: none;

    overflow: hidden;

    border-radius: 10px;
}
.menuSec ul{
    margin: 0;
}
.menuSec ul li{
    width: 100%;
    margin-left: 0;
}
.menuSec .menu{
    background: black;
}


.datos{
    text-align: center;
    color: white;
    font-size: 17px;
}
.datos img{
    width: 30px;
}


.servicios{
    padding-top: 20px;
    padding-bottom: 60px;
}

.titulo{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}
.colorBlanco{
    color: white;
}


.cuadro img{
    width: 100%;
    height: 270px;
    object-fit: cover;
}
.cuadro strong{
    background: black;
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: white;
    font-weight: 400;
    padding: 8px 0;
    display: inline-block;
}


.banner{
    position: relative;
    background: url(../images/fondo-banner.jpeg) no-repeat center center;
    background-size: cover;
    color: white;
    font-size: 18px;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.fondo-negro{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
}
.banner .dos{
    position: relative;
    z-index: 2;
}


.cuadrito{
    background: #f7f7f7;
    text-align: center;
    font-size: 20px;
    padding: 10px 10px;
    margin-bottom: 12px;
}
.cuadrito img{
    height: 50px;
}
.cuadrito strong{
    font-size: 20px;
    font-weight: normal;
}


.p{
    text-align: center;
}
.p img{
    height: 280px;
}
.p strong{
    width: 100%;
    font-size: 22px;
    display: inline-block;
    margin-bottom: 12px;
}
.p .preciop{
    font-size: 22px;
    color: black;
}

.btn-verde{
    background: #24d366;
    color: white;

    transition: all 0.2s;
}
.btn-verde:hover{
    background: #24d366;
    color: white;
    font-weight: bold;
}


.imagenPro img{
    width: 100%;
}


.precioPro{
    font-size: 25px;
    line-height: 45px;
    margin-bottom: 30px;
}
.precioPro span{
    font-size: 30px;
    color: green;
}

.botonesPro{
    margin-bottom: 30px;
}


.form-control{
    margin-bottom: 12px;
}
.imagen img{
    width: 100%;
}


footer{
    background: #333333;
    color: white;
    font-size: 18px;
    padding-top: 30px;
    padding-bottom: 30px;
}
footer strong{
    width: 100%;
    font-size: 23px;
    display: inline-block;
    margin-bottom: 20px;
}
footer iframe{
    width: 100%;
    height: 130px;
}
footer img{
    width: 30px;
}


@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){

}

@media screen and (max-width:768px){
    .menu-r{
        display: block;
    }
    nav ul{
        display: none;
    }
    nav ul li{
        width: 100%;
    }
    .menuSec{
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        display: block !important;
    }
    .menuSec ul{
        display: block !important;
    }
}

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