﻿body{
    background: url(../images/fondo.avif) no-repeat center center fixed;
    background-size: cover;
    font-family: 'Source Sans Pro', sans-serif;

}

.cabecera{
    background: black;
    text-align: center;
    margin-top: 5px;
}

.cabecera img{
    height: 120px;
}

.logotipo{
    text-align: center;
    color: white;
    font-family: 'Abril Fatface', cursive;
    font-size: 40px;
}

.datos{
    text-align: center;
    color: yellow;
    font-size: 30px;
}
.datos a, .datos a:hover{
    color: white;
}
.datos img{
    width: 30px;
    height: auto;
}


.imagen img{
    width: 100%;
    height: 470px;

    object-fit: cover;
}


.efecto{
    padding-top: 20px;
    padding-bottom: 20px;
}


.texto{
    position: relative;
    background: url(../images/3.webp) no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 20px 10px;
}
.fondo-negro{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
}
.contenido-texto{
    position: relative;
    z-index: 2;
}
.texto strong{
    width: 100%;
    font-size: 30px;
    display: inline-block;
    margin-bottom: 20px;
}
.texto p{
    font-size: 22px;
}
.btn-verde{
    background: #28ac1b;
    color: white;
    font-size: 22px;
}
.btn-verde:hover{
    font-weight: bold;
    color: white;
}


.leyenda{
    background: #9d2218;
    text-align: center;
    color: white;
    padding-top: 12px;
    padding-bottom: 12px;
}
h1{
    font-weight: bold;
    font-size: 27px;
    text-shadow: 2px 2px 2px black;
}
h2{
    font-size: 22px;
}


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

.seccion{
    background: #dad8d2;
    font-size: 22px;
    line-height: 30px;
    padding: 22px;
}

.imagen video{
    width: 100%;
}


footer{
    background: black;
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: bold;
    padding-top: 22px;
    padding-bottom: 22px;
    margin-bottom: 20px;
}
footer a, footer a:hover{
    color: white;
}
footer span{
    font-weight: lighter;
}


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