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


.cabecera-ayuda{
    height: 152px;
}


.fijo{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
}

.cintillo{
    background:red;
    font-size: 25px;
    color: white;
}
.cintillo img{
    width: 30px;
}


.cabecera{
    background: rgba(255, 255, 255, 0.9);
    padding-top: 5px;
    padding-bottom: 5px;
}
.logotipo{
    color: red;
    font-size: 34px;
    line-height: 39px;
    font-weight: bold;
}
.logotipo img{
    width: 110%;
}


.efecto{
    margin-top: 30px;
    margin-bottom: 30px;
}


.textoEfecto{
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 30px;
}
.textoEfecto strong{
    width: 100%;
    font-size: 30px;
    display: inline-block;
    text-shadow: 2px 2px 2px red;
}
.textoEfecto b{
    width: 100%;
    font-size: 21px;
}
.textoEfecto span{
    background: rgba(255, 255, 255, 0.9);
    color: black;
    font-weight: bold;
    border-radius: 12px;
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 12px;
}


.alcaldias{
    color: black;
}
.alcaldias .container{
    background: rgba(255, 255, 255, 0.9);
    padding-top: 30px;
    padding-bottom: 30px;
}

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


.alcaldia{
    background: black;
    padding: 32px;
}
.alcaldia strong{
    width: 100%;
    color: white;
    display: inline-block;
    margin-bottom: 12px;
}
.alcaldia img{
    width: 100%;
    height: 300px;

    object-fit: cover;
}
.alcaldia strong b{
    color: red;
    font-size: 22px;
}


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


.texto{
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 14px;
    line-height: 18px;
    padding: 30px;
}
.texto h2{
    font-size: 22px;
}


.imagen img{
    width: 100%;
}


.preguntas{
    padding-top: 60px;
    padding-bottom: 60px;
}

.accordion-item{
    margin-bottom: 12px;
}

.accordion-button:not(.collapsed){
    background: black;
    color: white;
    font-weight: bold;
}
.accordion-button{
    background: #f7f7f7;
    width: 100%;
    text-align: center;
    font-size: 19px;
    color: red;
    font-weight: bold;
}


footer{
    background: black;
    color: white;
    font-size: 17px;
    padding-top: 30px;
    padding-bottom: 30px;
}
footer strong{
    width: 100%;
    font-size: 22px;
    display: inline-block;
    margin-bottom: 30px;
}
footer img{
    width: 30px;
}




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

}

@media screen and (max-width:1200px){
    .cabecera-ayuda{
        display: none;
    }
    .fijo{
        position: relative;
    }
    .cintillo{
        text-align: center;
    }
}

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

}

@media screen and (max-width:768px){
    .logotipo{
        text-align: center;
    }
}

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