﻿:root{
    --gris1:#eeeeee;
    --gris2:#f4f4f4;
    --rojo:#ff2831;
}

body{
    font-family: Tahoma;
}

.cabecera-ayuda{
    border:1px solid blue;
    height: 155px;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--gris1);
    padding-top: 12px;
    padding-bottom: 12px;

    box-shadow: 100px 1px 10px gray;
}

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


nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 33.33%;
    float: left;
}
.cien{
    width: 100% !important;
}
nav a{
    color: black;
    text-decoration: none;
}

.menu{
    font-size: 22px;
    text-align: center;
}
.menu:hover, .activo{
    color: blue;
    font-weight: bold;
}


.datos{
    text-align: center;
    font-size: 19px;
}
.datos img{
    width: 32px;
}


.efecto{
    background: url(../images/fondo-efecto.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 250px;
    padding-bottom: 250px;
}


.servicios{
    padding-top: 70px;
    padding-bottom: 70px;

    scroll-margin-top: 150px; /* altura del header */
}


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


.tituloSub{
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-top: -30px;
}
.tituloSub strong{
    background: var(--rojo);
    background: green;
    color: white;
    font-size: 27px;
    line-height: 50px;
    text-shadow: 2px 2px 2px black;
    font-weight: bold;
    padding: 12px 20px;
}
.dos{
    font-size: 22px;
    font-weight: normal;
    display: inline-block;
}


.superTitulo{
    color: red;
    color: orange;
    font-size: 50px;
    line-height: 50px;
}


.ser{
    font-size: 19px;
    margin-bottom: 20px;
}
.ser img{
    height: 90px;
}


.ser2{
    text-align: center;
}
.ser2 strong{
    width: 100%;
    display: inline-block;
}



.seccion{
    background: #00003e;
    color: white;
    font-size: 19px;
    padding: 100px 45px;
}

.seccion strong{
    width: 100%;
    color: orange;
    font-size: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

.img1{
    background: url(../images/1.jpg) no-repeat center center;
    background-size: cover;
}



.mas{
    background: url(../images/fondo2.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 50px;
}

.mm{
    background: white;
    text-align: center;
    padding: 30px;
}

.mm strong{
    width: 100%;
    color: green;
    font-size: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.mm img{
    width: 100%;

    border-radius: 20px;
}


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

}

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

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

}

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

    .img{
        height: 300px;
    }
}

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




.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #24d366;
    font-weight: normal;
    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
}



.footer{
    background: var(--gris2);
    background: #00003e;
    padding-top: 60px;
    padding-bottom: 20px;
    font-size: 17px;
    color: white;
}

.footer a{
    color: white;
    text-decoration: none;
}

.footer a:hover{
    color: green;
    text-decoration: underline;
}

.footer-titulo{
    font-size: 22px;
    color: orange;
    display: inline-block;
    margin-bottom: 15px;
}

.whats-icon{
    width: 22px;
    margin-left: 6px;
}

.footer-copy{
    border-top: 1px solid #ccc;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 15px;
    color: gray;
}