﻿body{
    background: url(../images/fondo.jpg) no-repeat center center fixed;
    background-size: cover;
    font-family: "Roboto", sans-serif;
}



.cabecera{
    background: #990100;
}

.logotipo img{
    width: 120%;
}

.leyenda{
    color: #FF0;
    text-align: center;
    font-size: 23px;
}
.leyenda strong{
    font-size: 25px;
    text-shadow: 2px 2px 2px black;
}


.datos{
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 22px;
}
.datos a{
    color: white;
}
.datos img{
    width: 30px;
}


.contenido{
    padding-top: 80px;
    padding-bottom: 80px;
}
.sinGuiones a{
    text-decoration: none;
}


.titulo{
    text-align: center;
    font-size: 33px;
    line-height: 33px;
    color: #990100;
    font-weight: bold;
    margin-bottom: 40px;
}


.muni{
    background: #FF0;
    text-align: center;
    color: black;
    font-size: 23px;
    line-height: 28px;
    padding: 12px 12px;
    cursor: pointer;
    
    border-radius: 10px;

    transition: all 0.5s;
}
.muni:hover{
    background: #c94f12;
    color: white;
}
.muni span{
    width: 100%;
    font-weight: bold;
    display: inline-block;
}

.naranja{
    background: #da524f !important;
    color: white;
}
.naranja:hover{
    background: red !important;
}


.imagen iframe, .imagen img{
    width: 100%;
}

.seccion{
    font-size: 18px;
}


footer{
    background: black;
    color: white;
    padding-top: 30px;
    padding-bottom: 30px;
}
footer strong{
    font-size: 22px;
    color: #FF0;
}
footer img{
    width: 30px;
}

.datosFooter{
    font-size: 22px;
    font-weight: bold;
}
.datosFooter a{
    color: white;
}


@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: 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;
}
.tel{
    background: blue !important;
    bottom: 80px !important;
}
@keyframes pulse {
    from,to {
        transform: scale3d(1,1,1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }
}

.pulse {
    animation-name: pulse
}