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


.cintillo{
    background: black;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: white;
    padding-top: 12px;
    padding-bottom: 12px;
}
.cintillo img{
    height: 25px;
}
.cintillo a{
    color: white;
	text-decoration: none;
}


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

.logotipo img{
    width: 100%;
}


nav a{
    color: black;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 18%;
    float: left;
    margin: 0 1%;
}
.menu{
    background: blue;
    font-size: 22px;
    font-weight: bold;
    color: yellow;
    text-align: center;
    padding: 3px 0;
	border-radius: 8px;
}

.efecto{
    padding: 0;
}



.rojo{
    background: black;
    text-align: center;
    color: yellow;
    font-weight: bold;
    font-size: 35px;
}
.rojo a{
    color: white;
	text-decoration: none;
}
.rojo img{
    height: 30px;
}


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


.negro{
    background: black;
    color: white;
    font-size: 20px;
    text-align: center;
    padding: 30px 0;

    border-radius: 10px;
}
.negro strong{
    width: 100%;
    color: yellow;
    font-size: 30px;
    display: inline-block;
    margin-bottom: 30px;
}
.importante{
    background: red;
    color: yellow;
    font-weight: bold;
    font-size: 35px;
    padding: 2px 10px;
}
.negro b{
    font-size: 25px;
    margin-bottom: 20px;
}
.ama{
    color: yellow;
}


.video{
    background: black;
    padding: 12px;
    margin-bottom: 20px;
}
.video iframe{
    width: 100%;
}
.video strong{
    width: 100%;
    background: blue;
    color: white;
    font-size: 20px;
    text-align: center;
    display: inline-block;
}



.rape{
    background: black;
    color: white;
    padding: 12px;
}
.rape strong{
    color:yellow;
}

.rape2{
    font-size: 22px;
    line-height: 32px;
}
.form-group{
    margin-bottom: 20px;
}


.galeria{
    text-align: center;
}
.galeria img{
    height: 300px;
}
.divGal{
    overflow: hidden;
}


@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){
    nav ul li{
        width: 31%;
        margin-bottom: 12px;
    }
}


.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;
}
.llamada{
    position: fixed;
    bottom: 80px !important;
    right: 30px;
    z-index: 1000;
    background: blue;
    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
}