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

.cintillo{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: red;
    color: white;
    font-size: 18px;
    text-align: center;
    padding-top: 4px;
    padding-bottom: 4px;
}
.cintillo a{
    color: white;
}
.cintillo img{
    height:25px;
}
.btn-verde{
    background: black;
    color: white;
    font-weight: bold;
}


.pagina{
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 30px;
}
.titulo{
    font-family: 'Candal', sans-serif;
    font-size: 33px;
    text-shadow: 2px 2px 2px black;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}
.titulo h1{
    font-size: 33px;
    display: inline;
}

.subtitulo{
    font-family: 'Candal', sans-serif;
    font-size: 23px;
    text-shadow: 2px 2px 2px black;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}


.contenido{
    background: rgb(9, 197, 255, 0.6);
    max-width: 1120px;
    padding-top: 40px;
    padding-bottom: 40px;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
}



.a{
    cursor: pointer;
    margin-bottom: 30px;
}
.a h2{
    background: black;
    width: 100%;
    font-weight: lighter;
    font-size: 23px;
    line-height: 32px;
    text-align: center;
    color: white;
    display: inline-block;
    padding: 7px 10px;
}
.aImagen{
    width: 100%;
    height: 300px;
}
.aImagen img{
    width: 100%;
    height: 300px;

    object-fit: cover;
}


.contacto{
    background: red;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 40px;
}
.contacto strong{
    color: white;
    font-size: 40px;
}
.contacto span{
    font-size: 22px;
    color: white;
}


video{
    width: 30%;
}

.texto{
    color: white;
    font-size: 17px;
}
.texto p{
    margin-bottom: 10px;
}



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



.imagen{
    color: white;
    text-shadow: 1px 1px 2px black;
}
.imagen video, .imagen img{
    width: 100%;
}


.blanco{
    text-align: center;
    color: white;
    font-size: 25px;
    text-shadow: 2px 2px 2px black;
}



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

}

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

}

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

}

@media screen and (max-width:768px){
    .pagina{
        margin-top: 60px;
    }
    .cintillo{
        font-size: 16px;
    }
    .cintillo img{
        display: none;
    }
}

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