@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Croissant+One&display=swap');


* {padding: 0; margin: 0;}
a {outline: 0; text-decoration:none; color:#C40;}
a:hover{color:#620;}
a img {border-width:0;}


body{
	font-family: 'Ubuntu', 'Verdana', sans-serif;
	font-size: 15px;
	font-weight: normal;
	color: #59665e;
	background: #fff;
	position: relative;
}


header{
	text-align: center;
	background: #6f7a73 url("../img/fondo-azulejos-verdes.png") repeat-x center bottom;
	z-index: 10;
}

#social{
	position: sticky;
	top: -3px;
	padding: 0 1% 5px 1%;
	background: #555e58;
	text-align: center;
	z-index: 10;
}


#social a{
	margin: 0 5px;
	white-space: nowrap;
	color:#aebfb4;
}
#social a:hover{
	color:#fee900;
}

#social a img{
	position: relative;
	top: 5px;
	height: 32px;
	padding: 5px;
	margin-bottom: -12px;
	z-index: 20000;
}
#social a:hover img{
	scale: 1.3;
	transition: scale 0.1s;
}

.idiomas{
	display: inline-block;
	margin: 2px 2%;
	white-space: nowrap;
}
#btnmenu{
	margin-left: 20px;
	cursor: pointer;
}
#logo{
	display:block;
	width: 100%;
	text-align: center;
}
#logo img{
	padding-top: 20px;
	width: 90%;
	max-width: 200px;
	text-align: center;
}
#btnpromociones{
	padding: 10px;
}

#menuhorizontal{
	position: sticky;
	top: 26px;
	display: none; /*Oculto hasta que se pulse el botón*/
	text-align: center;
	padding: 6px 15px;
	background: #6f7a73;
	border-bottom: #FFF 1px solid;
	z-index: 10;
}
#menuhorizontal a{
	display:block;
	padding: 4px 8px;
	color:#aebfb4;
	text-transform: uppercase;
	font-size:19px;
	transition: background 0.1s;
	border-radius: 2px;
	font-family: 'Croissant One', sans-serif;
}

#menuhorizontal a:hover{
	color:#555e58 !important;
	background: #fee900;
	transition: background 0.1s;
}

.deco{
	position: relative;
}

.deco img{
	width: 100%;
}

.deco::after {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#6F7A73, transparent);
}

main{
	background: #edf4f0;
	padding: 20px 2% 30px 2%;
}

h1{
	font-family: 'Croissant One', sans-serif;
	font-size: 25px;
	font-weight: bold;
	line-height: 32px;
	color:#006929;
	padding: 40px 2%;
	text-align: center;
}

h2{
	font-family: 'Croissant One', sans-serif;
	font-size: 21px;
	color:#6F7A73;
	margin: 50px 0 15px 3%;
}

main p{
	padding: 6px 3%;
	font-size: 15px;
	line-height:150%;
	color:#262b28;
}

main p strong{
	font-size:1.2em;
}

.galeria{
	padding: 20px 0;
	text-align: center;
}
.galeria a img{
	border:#6f7a73 5px solid;
	padding: 1px;
	margin: 10px;
	border-radius: 2px;
	transition: border 0.2s;
	max-width: 50%;
	height: auto;
}

.galeria a:hover img{
	border-color: #fee900;
	transition: border 0.1s;
}

li{
	margin: 1px 10%;
	list-style-type:square;
	font-size: 15px;
}
#direccion{
	display:block;
	position:relative;
	margin: 0 auto 25px auto;
	width: 90%;
	max-width: 500px;
	padding: 15px 2%;
	background:#FADEC9;
}
.descuentos{
	font-weight: bold;
	font-size: 15px;
	color:#FFF;
	margin: 5px 0 !important;
	padding: 10px !important;
	border-top: #A5D341 1px solid;
}
.descuentos img{
	float: left;
	margin-right: 5px;
}

.deco-footer{
	height: 277px;
	background: url("../img/fondo-azulejos-blancos.png") repeat-x center bottom;
	margin-top: -100px;
}

footer{
	margin-bottom: 55px;
	background: #555e58;
	position: relative;
	width: 90%;
	padding: 40px 5%;
	font-size: 18px;
	line-height: 150%;
	color:#FFF;
	text-align: center;
}


footer div{
	padding: 20px 2%;
}
footer a{
	white-space: nowrap;
	color:#aebfb4;
}

footer a img{
	display: inline-block;
	max-width: 220px;
	height: auto;
	transition: opacity 0.2s;
}

footer a:hover{color:#fee900;}

footer a:hover img{
	opacity: 0.7;
	transition: opacity 0.1s;
}

.error{
	position:relative;
	margin: 40px auto;
	padding: 100px 5% 40px 5%;
	width: 80%;
	max-width: 500px;
	background:#FFF url("img/error.png") no-repeat center 20px;
	border:#FE8A00 5px solid;
	text-align: center;
}
.error strong{
	display:block;
	font-size: 18px;
	margin-bottom:15px;
}
.error a{
	display: inline-block;	
	background: #EABA92;
	padding: 5px 5%;
	width: 50%;
	max-width: 70px;
	color:#000;
	border-radius: 3px;
}
.error a:hover{background:#f88d1f;}


#cookieinfo{
	font-size: 11px;
	display:block;
	position: fixed;
	left: 0;
	bottom:0;
	width: 100%;
	background:#535b56DD;
	color: #FFF;
	text-align: center;
	padding: 15px 0;
	z-index: 10;
	border-top: #FFF 1px solid;
}
#cookieinfo .boton{
	display: inline-block;
	margin: 0 3%;
	padding: 3px 12px;
	border:#000 1px solid;
	border-radius: 1px;
	background: #106E4F;
	color:#FFF;
	font-weight: bold;
}
#cookieinfo .boton:hover{
	background: #0A0;
}
#cookieinfo img{
	float: right;
	margin-right: 20px;
}
#cookieinfo a{color:#CCC;}
#cookieinfo a:hover{text-decoration: underline;}



@media screen and (min-width: 600px) {

	#social{
		text-align: right;
	}
	#social a img{
		padding: 0;
	}
	#btnmenu{
		display: none;
	}

	#menuhorizontal{
		display: block;
	}
	#menuhorizontal a{
		display: inline-block;
		padding: 1px 1%;
	}

	#direccion{
		padding: 15px 5% 15px 100px;
		background:#FADEC9 url("img/direccion64.png") no-repeat 20px center;
	}

	main{
		clear: both;
		position: relative;
		margin: 0 auto;
		width: 92%;
		max-width:1400px;
		background: #edf4f0;
		padding: 20px 4% 30px 4%;
		height: auto !important;
		min-height: 300px;
		box-shadow: 0 2 4px #6F7A73;
	}
	
	h1{
		font-size: 43px;
	}	
	h2{
		font-size: 25px;
	}	
	main p{
		font-size: 19px;
	}


	footer div{
		display: inline-block;
		vertical-align: top;
		text-align: left;
	}

	#cookieinfo{
		font-size: 13px;
	}
}
