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


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

.cabecera{
    border-top: 5px solid black;
    border-bottom: 5px solid black;
    background: white;
    padding-top: 8px;
    padding-bottom: 8px;
}

.logotipo{
    font-family: 'Cinzel', serif;
    color: red;
    font-size: 35px;
    font-weight: bold;
}
.logotipo img{
    width: 100%;
}


nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 50%;
    float: left;
}
.menu{
    text-align: center;
    font-size: 22px;
}

.btn-verde{
    background: #24d366;
    color: white;
    font-size: 22px;
}
.btn-verde:hover{
    background: #24d366;
}

.btn-danger{
    font-size: 22px;
}


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

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


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


.texto{
    text-align: center;
    font-size: 27px;
    line-height: 37px;
}
.texto strong{
    width: 100%;
    font-size: 43px;
    line-height: 53px;
    color: red;
    font-family: 'Cinzel', serif;
    margin-bottom: 30px;
    display: inline-block;
}


.contenido .container{
    background: white;
    padding-top: 40px;
    padding-bottom: 40px;
}

.seccion{
    font-size: 22px;
    line-height: 32px;
}
.seccion strong{
    width: 100%;
    font-size: 27px;
    color: red;
    display: inline-block;
    margin-bottom: 20px;
}

.video iframe{
    width: 100%;
}


.precios{
	margin-top: 30px;
	margin-bottom: 30px;
}
.precios table{
	width: 100%;
	font-weight: bold;
}
.precios thead tr th{
	background: #306A16;
    text-align: center;
	color: white;
	padding-top: 12px !important;
	padding-bottom: 12px !important;
}
.precios tr{
	background: #E5EFDB;
}
.precios td{
	text-align: center;
	padding-top: 12px;
	padding-bottom: 12px;
}
.color2{
	background: #B2CF93 !important;
}


footer{
    background: black;
    text-align: center;
    color: white;
    font-size: 22px;
    line-height: 32px;
    padding-top: 30px;
    padding-bottom: 30px;
}
footer img{
    width: 30px;
}
footer strong{
    width: 100%;
    display: inline-block;
    margin-bottom: 12px;
}
footer .logotipo{
    line-height: 50px;
}


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