﻿body{
    font-family: Tahoma;
}

header{
    border-bottom: 5px solid #e61e25;
    background: #1a1a1a;
    padding-top: 30px;
    padding-bottom: 30px;
}


.logotipo img{
    width: 100%;
}

.efecto{
    position: relative;
    background: url(../images/fondo-efecto.jpg) no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}
.efecto .container{
    position: relative;
    z-index: 100;
}
.efecto h1{
    font-weight: bold;
}
.efecto h2{
    font-size: 26px;
}
.efecto span{
    width: 100%;
    font-size: 22px;
    display: inline-block;
    margin: 12px 0;
}
.btn-cta{
    font-size: 29px;
    font-weight: bold;
}

.fondo-negro{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
}


.servicios{
    background: #f4f4f4;
    padding-top: 40px;
    padding-bottom: 40px;
}

.titulo{
    text-align: center;
    color: #e61e25;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
}

.ser{
    background: white;
    text-align: center;
    font-size: 22px;
    padding: 20px;
    margin-bottom: 30px;
}
.ser span{
    font-size: 62px;
    color: #e61e25;
}
.ser strong{
    width: 100%;
    font-size: 25px;
    text-align: center;
    display: inline-block;
}

/* FOOTER */
footer {
    background:#1a1a1a;
    color: white;
    text-align: center;
    padding: 30px;
}

.contacto-info { font-size: 1.2rem; margin-bottom: 10px; }

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

}

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

}

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

}

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

}

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