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

#chat{
	position: fixed;
	top: 400px;
	right: 60px;
	z-index: 10000;
	border: 2px solid #43c22e;
	background: white;
	width: 85px;
	text-align: center;
	padding: 18px 0px 0;

	border-radius: 50%;

	box-shadow: 5px 5px 5px #43c22e;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#chat strong{
	width: 100%;
	float: left;
}

#chat img{
	width: 40px;
}

.cintillo{
    background: rgb(231,185,93);
    background: linear-gradient(90deg, rgba(231,185,93,1) 0%, rgba(230,111,68,1) 100%);
    color: white;
    font-size: 20px;
    padding: 4px 0;
}
.cintillo img{
    width: 25px;
}
.cintillo a{
    color: white;
}


.cabecera{
    padding: 7px 0 20px;
}

.logotipo{
    text-align: center;
}
.logotipo img{
    width: 70%;
}

.leyenda{
    font-family: 'Krona One', sans-serif;
    font-size: 32px;
    font-weight: bold;
    margin-top: 15px;
}

nav{
    margin-top: 35px;
}

nav a, nav a:hover{
    text-decoration: none;
    color: white;
}

nav ul{
    list-style: none;
    padding: 0;
}

nav ul li{
    width: 48%;
    margin: 0 1%;
    float: left;
}

.menu{
    background: #e7b85c;
    text-align: center;
    font-size: 20px;
    color: white;
    padding: 12px 0;
}
.menu:hover{
    background: #b20d01;
    font-weight: bold;
}

.marcas{
    background: #ecd4a5;
    text-align: center;
    padding: 12px 0;
}

.marcas img{
    height: 75px;
    margin: 0 20px;
}


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

.titulo{
    font-weight: bold;
}

.seccion{
    font-size: 22px;
    line-height: 32px;
}

.imagen-seccion img{
    width: 100%;
}

h1{
    font-size: 32px;
}


.revision{
    background: red;
    text-align: center;
    color: white;
    font-size: 30px;
    line-height: 27px;
    font-weight: bold;

    border-radius: 20px;
    padding: 12px 0;
}
.revision span{
    width: 100%;
    font-size: 17px;
    font-weight: lighter;
    display: inline-block;
}


.leyenda2{
    background: #ddd;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    padding: 20px;
}
.color1{
    color: blue;
}
.color2{
    color: blue;
}
.color3{
    color: green;
}


.imagen img{
    width: 100%;
}
.texto{
    font-size: 22px;
    padding: 20px;
}
.texto p{
    color: blue;
}


footer{
    background: rgb(231,185,93);
    background: linear-gradient(90deg, rgba(231,185,93,1) 0%, rgba(230,111,68,1) 100%);
    color: white;
    font-size: 20px;
    line-height: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
}

footer strong{
    width: 100%;
    font-size: 24px;
    text-shadow: 2px 2px 2px black;
    display: inline-block;
    margin-bottom: 20px;
}

footer img{
    width: 30px;
}

footer a{
    color: white;
}

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

}

@media screen and (max-width:992px){
    .cintillo{
        text-align: center;
    }
    .logotipo img{
        width: 20%;
    }
    .leyenda{
        text-align: center;
    }
}

@media screen and (max-width:768px){
    .logotipo img{
        width: 25%;
    }
    .titulo{
        padding: 0 10px;
    }
}

@media screen and (max-width:576px){
    .logotipo img{
        width: 30%;
    }
    .texto{
        text-align: center;
    }
}


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