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

.cabecera{
    background: #fe8501;
}

.logotipo img{
    width: 120%;
}

.datos{
    text-align: center;
    font-size: 22px;
    color: white;
}
.datos strong{
    font-size: 30px;
    line-height: 30px;
}
.datos b{
    width: 100%;
    font-size: 22px;
    display: inline-block;
}
.datos img{
    width: 35px;
}
.datos a{
    color: white;
}


.s{
    position: relative;
    height: 200px;
    text-align: center;
    margin-bottom: 20px;
}
.fondo-negro{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;

    transition: all 0.2s;
}
.contenidoS{
    position: relative;
    z-index: 2;
}
.s strong{
    width: 100%;
    text-align: center;
    font-size: 32px;
    color: white;
    margin-top: 70px;
    text-shadow: 2px 2px 2px black;
    display: inline-block;
}
.btn-verde, .btn-verde:hover{
    background: #39b71a;
    color: white;
    font-size: 22px;
    margin-top: 12px;
}
.btn-verde:hover{
    font-weight: bold;
}

.s:hover strong{
    background: rgba(0,0,0,0.6);
}


.s1{background: url(../images/s1.webp) no-repeat center center;background-size: cover;}
.s2{background: url(../images/s2.webp) no-repeat center center;background-size: cover;}
.s3{background: url(../images/s3.webp) no-repeat center center;background-size: cover;}
.s4{background: url(../images/s4.webp) no-repeat center center;background-size: cover;}
.s5{background: url(../images/s5.webp) no-repeat center center;background-size: cover;}
.s6{background: url(../images/s6.webp) no-repeat center center;background-size: cover;}


.damos{
    padding-top: 40px;
    padding-bottom: 40px;
}
.titulo{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}
.rojo{
    color: red;
}

.ubi{
    background: #f7f7f7;
    font-size: 20px;
    line-height: 60px;
    padding: 12px;
}


.btn{
    font-size: 22px;
    font-weight: bold;
}


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


.texto{
    background: #f7f7f7;
    font-size: 20px;
    line-height: 30px;
    padding: 40px;
}
.texto strong{
    color: #fe8501;
    font-size: 30px;
}

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


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

}

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

}

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

}

@media screen and (max-width:768px){
    .ubi{
        width: 100%;
        font-size: 16px;
        display: inline-block;
        margin-bottom: 12px;
        padding: 5px;
    }
    .img{
        height: 350px;
    }
}

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


.tel{
    border: 0 !important;
    background: blue !important;
    bottom:90px !important;
}
.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    border: 2px solid #39b71a;
    background: #24d366;
    font-weight: bold;
    font-size: 20px;
    color: #39b71a;
    color: white;
    padding: 6px 17px;
    border-radius: 20px;

    box-shadow: 10px 10px 10px black;

    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
}