@charset "UTF-8";
/* CSS Document */
/*
HTML                  -     CSS
<div></div>                  div {}
<div id="hola"></div>        div#hola {}
<div class="equis"></div>    div.equis {}

Jerarquía
HTML                         CSS
<div id="hola">				  div#hola img.foto {}
	<img src="dgasd.jpg">
	<img src="dgasd.jpg" class="foto">
	<img src="dgasd.jpg">
	<img src="dgasd.jpg" class="foto">
	<img src="dgasd.jpg" class="foto">
</div> 

*/
/*Reset CSS*/
* {
	margin:0;
	padding:0;
	font-size:100%;
	}
body {
	background-color:#B7B7B7;
	font-family: 'Lato', sans-serif;
	}
header {
	background-color:#fff;
	height:70px;
	position:fixed;
	width:100%;
	z-index:100;
	top:0;
	left:0;
	}
div#mobile {
	display:none;
	}
h1 {
	width:300px;
	height:50px;
	background-image:url(../svg/logo-horizontal.svg);
	background-size:cover;
	background-repeat:no-repeat;
	float:left;
	margin:12px 0 0 10px
	}
h1 span {
	opacity:0;
}
div#desktop a {
	text-transform:uppercase;
	color:rgb(48,96,115);
	text-decoration:none;
	font-weight:300;
	display:block;
	width:142px;
	height:70px;
	line-height:70px;
	text-align:center;
	float:left;
	}
div#desktop {
	float:right;}

div#desktop a:hover {
	background-color:rgb(48,96,115);
	color:#fff;
	}
div#desktop a:active {
	background-color:#555;
	}
div#portada {
	background-image:url(../images/marisco.jpg);
	height:600px;
	background-size:cover;
	background-repeat:no-repeat;
	}
div#portada img {
	display:block;
	margin:0 auto;
	position:relative;
	top:20%;
	}
div#portada img#foto2 {
	top:30%;
	}

h2, h5 {
	text-align:center;
	color:#f27b50;
	text-transform:uppercase;
	/*1em = 100% fuente / aprox 16px - 18px*/
	font-size:3.2em;
	font-weight:400;
	}
h3, h6 {
	text-align:center;
	color:#306073;
	font-weight:300;
	font-style:italic;
	font-size:1.3em;
	}

span.delgado {
	font-weight:300;
	}

article#art1, article#art3, article#art5 {
	background-color:#e6e5e5;}
	
article#art2, article#art4, article#art6 {
	background-color:#f8efdb;}

article {
	padding:20px 0 70px;
	}

div.caja {
	width:90%;
	max-width:1200px;
	margin:70px auto 0;
	}
	
div.tope {
	height:70px;
	}

/*Article 1*/

article#art1 div.caja div {
	width:33.33%;
	float:left;
	}
article#art1 figure {
	background-color:#fff;
	border:2px #f2360c solid;
	width:90%;
	margin:0 auto;
	border-radius:12px;
	overflow:hidden;
	position:relative;
	}
	
article#art1 input[type="checkbox"] {
	position:absolute;
	bottom:0;
	left:0;
	display:block;
	width:34px;
	height:34px;
	opacity:0;
	cursor:pointer;
	}

article#art1 h4 {
	text-align:center;
	color:#f2360c;
	text-transform:uppercase;
	border-bottom:2px #f2360c solid;
	font-weight:300;
	font-size:1.6em;
	line-height:1.6em;
	}

article#art1 input[type="checkbox"]:checked + img {
	-webkit-filter:grayscale(0%);
	filter:grayscale(0%);
	}
	
article#art1 img {
	display:block;
	margin:0 auto;
	width:70%;
	height:auto;
	-webkit-filter:grayscale(100%);
	filter:grayscale(100%);
	-webkit-transition:all .5s ease;
	-moz-transition:all .5s ease;
	transition:all .5s ease;
	}
article#art1 figure span {
	display:block;
	width:34px;
	height:34px;
	background-color:#f2360c;
	font-size:1.6em;
	color:#fff;
	text-align:center;
	line-height:1.3em;
	float:left;
	text-indent:0;
	}
article#art1 figcaption {
	line-height:34px;
	text-transform:uppercase;
	background-color:#fff;
	color:#fff;
	text-indent:4px;
	-webkit-transition:all .5s ease;
	-moz-transition:all .5s ease;
	transition:all .5s ease;
	}
	
article#art1 input[type="checkbox"]:checked ~ figcaption {
	background-color:rgba(239,183,184,1.00);
	color:#333;	
	}
	

article#art1 p {
	text-align:center;
	color:#306073;
	font-weight:300;
	width:90%;
	margin:8px auto 0;
	font-size:1.2em;
	line-height:1.25em;
	}

/*Article 2*/

article#art2 div.caja {
	-webkit-column-count:3;
	-moz-column-count:3;
	column-count:3;
	
	-webkit-column-gap:35px;
	-moz-column-gap:35px;
	column-gap:35px;
	}

article#art2 div.caja div {
	background-color:rgba(255,255,255,.7);
	border:2px solid #fff;
	border-radius:2px;
	padding:8px;
	height:350px;
	margin-bottom:35px;
	}
	
article#art2 img {
	display:block;
	margin:auto;
	width:100%;
	height:auto;
	}
	
article#art2 figcaption {
	color:#f27b50;
	text-align:center;
	font-weight:300;
	font-size:1.5em;
	line-height:1.1em;
	margin-top:8px;
	}

article#art2 div.caja span {
	display:block;
	width:40px;
	height:40px;
	margin:15px auto 0;
	background-color:#f27b50;
	border-radius:100%;
	text-align:center;
	line-height:40px;
	color:#fff;
	font-size:1.4em;
	}
	
article#art2 a {
	display:block;
	background-color:#f2360c;
	width:200px;
	height:50px;
	border-radius:6px;
	color:#fff;
	text-align:center;
	line-height:50px;
	text-decoration:none;
	margin:auto;
	font-size:1.4em;
	font-weight:300;
	}

/*Article 3*/

article#art3 div.caja {
	-webkit-column-count:4;
	-moz-column-count:4;
	column-count:4;
	}
article#art3 div.caja div {
	height:350px;
	}
article#art3 div.icono {
	width:150px;
	height:150px !important;
	border-radius:100%;
	background-color:rgba(160,110,92,1.00);
	margin:auto;
	background-size:80%;
	background-position:center;
	background-repeat:no-repeat;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	transition:all .5s;
	}
	
article#art3 div.caja div:hover div.icono {
	-webkit-transform:rotate(360deg) scale(.8);
	transform:rotate(360deg) scale(.8);
	background-color:#C4894B;
	border-radius:4px;
	}
	
div#recolectar div.icono { background-image:url(../svg/kitchen109.svg); background-size:70%;}
div#preparar div.icono { background-image:url(../svg/chef15.svg); background-size:60%;}
div#cocinar div.icono { background-image:url(../svg/cooking6.svg);}
div#servir div.icono { background-image:url(../svg/flat15.svg); background-size:70%;}
	
article#art3 h4 {
	text-align:center;
	text-transform:uppercase;
	font-size:1.4em;
	line-height:1.5em;
	font-weight:300;
	border-bottom:2px solid #698f9f;
	margin-top:8px;
	}
article#art3 p {
	text-align:center;
	font-weight:300;
	color:rgba(160,110,92,1.00);
	font-size:1.1em;
	margin-top:5px;
	}
	
article#art4 div.caja {
	-webkit-column-count:3;
	-moz-column-count:3;
	column-count:3;
	}
article#art4 img {
	display:block;
	width:98%;
	height:auto;
	margin:auto;
	}
article#art4 p {
	text-align:center;
	color:#4B4B4B;
	line-height:1.2em;
	font-size:1.15em;
	font-weight:300;
	margin-top:8px;
	}
	
article#art4 figcaption span {
	display:block;
	width:38px;
	height:38px;
	text-align:center;
	line-height:38px;
	color:#E49113;
	background-color:#FFFFFF;
	border-radius:100%;
	margin:auto;
	}

article#art4 figure {
	position:relative;}
article#art4 figcaption {
	position:absolute;
	width:100%;
	top:45%;
	}
	
/*Footer*/
footer {background-color:#1b445a; padding:0 0 20px;}
footer h5, footer h6 { color:#fff;}
div#formulario {
	margin:60px auto 0;
	width:90%;
	max-width:700px;
	}
div#formulario input, div#formulario textarea {
	display:block;
	width:100%;
	background:transparent;
	border:2px solid #fff;
	color:#fff;
	line-height:3.4em;
	font-size:1em;
	text-transform:uppercase;
	font-weight:300;
	border-radius:12px;
	margin-bottom:25px;
	padding:0 8px;
	box-sizing:border-box;
	}
	
div#formulario input[type="date"] {
	width:30%;
	}
div#formulario input[type="submit"] {
	width:50%;
	float:right;
	}
div#formulario textarea {
	line-height:1em;
	height:150px;
	padding-top:8px;
	}

div#formulario label {
	color:#fff;
	text-transform:uppercase;
	float:left;
	font-weight:300;
	line-height:3.1em;
	margin-right:8px;
	}
	
footer button {
	clear:both;
	display:block;
	margin:0 auto 30px;
	width:180px;
	height:50px;
	line-height:50px;
	background-color:#f2360c;
	border:none;
	color:#fff;
	font-size:1.2em;
	border-radius:4px;
	}
	
div#menupie {
	width:90%;
	max-width:600px;
	margin:20px auto;
	height:20px;
	}
div#menupie a {
	display:block;
	width:-webkit-calc(20% - 1px);
	width:-moz-calc(20% - 1px);
	width:calc(20% - 1px);
	text-align:center;
	float:left;
	color:#fff;
	font-weight:300;
	text-decoration:none;
	border-right:1px solid #fff;
	}
div#social {
	width:90%;
	max-width:400px;
	margin:20px auto;
	height:70px;
	}
div#social img {
	display:block;
	width:-webkit-calc(25% - 20px);
	width:-moz-calc(25% - 20px);
	width:calc(25% - 20px);
	height:auto;
	float:left;
	padding:0 10px;
	}

div#textos {
	height:2em !important;
	width:960px;
	margin:auto;
	position:relative;
	top:-2.4em;
	left:1em;
	}
div#textos p {
	background-color:#000;
	color:#fff;
	padding:0 1em;
	line-height:1.4em;
	}
div#fade {
	width:960px;
	margin:auto;
	border-radius:8px;
	overflow:hidden;
	border:2px solid #666;
	}
div#fade img {
	display:block;
	margin:auto;
	width:100%;
	height:auto;
	}
	
article#art4 a {
	text-decoration:none;
	}
	
div#mapa {
	height:0;
	overflow:hidden;
	margin-top:-50px;
	}
footer input[type="checkbox"]:checked + div#mapa {
	height:auto;
	}
footer input[type="checkbox"] {
	display:block;
	margin:0 auto;
	width:180px;
	height:50px;
	position:relative;
	top:-80px;
	opacity:0;
	}

/*Media Querys*/

@media screen and (max-width:1023px) {
div#desktop {
	display:none;
	}
div#burguer {
	width:46px;
	float:right;
	margin:17px 10px 0 0;
	}
div#burguer span {
	display:block;
	background-color:#1b445a;
	height:6px;
	margin:3px;
	width:90%;
	float:right;
	border-radius:2px;
	}
div#mobile {
	background-color:#1b445a;
	display: none;
	position:absolute;
	width:100%;
	top:70px;
	padding:6px 0;
	}
div#mobile span {
	display:block;
	width:20px;
	height:20px;
	border-radius:100%;
	float:left;
	clear:both;
	margin:7px 0 0 6px;
	}
div#mobile a {
	display:block;
	color:#fff;
	text-decoration:none;
	font-weight:300;
	text-indent:5px;
	line-height:2em;
	background-color:rgba(246,246,246,.2);
	margin:8px auto;
	width:98%;
	border-radius:2px;
	}
article#art2 div.caja {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
	}
article#art2 div.caja div {
	height:450px;
	}
article#art2 div.caja span {
	margin:auto;
	position:relative;
	top:50px;
	}
article#art2 figcaption {
	font-size:1.1em;
	}
	}
	
@media screen and (max-width:867px) {
	
article#art1 figure {
	width:95%;
	}
article#art2 div.caja div {
	height:400px;
	}
article#art3 div.caja {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}
div#fade {
    width: 96%;
	height:248px !important;
	}
div#textos {
	left:1.1em;
	}
article#art4 div.caja {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
	}
article#art4 p {
	font-size:1em;
	}
}

@media screen and (max-width:767px) {
article#art1 div.caja div {
	float:none;
	width:80%;
	margin:0 auto 20px;
}
article#art2 div.caja div {
	height:340px;
	}
div#fade, div#textos {
	display:none;
	}
article#art4 div.caja {
	-webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
	}
article#art4 div.caja div {
	width:80%;
	margin:0 auto 20px;
	}
	}
@media screen and (max-width:639px) {
	article#art2 div.caja {
	-webkit-column-count: 1;
	-moz-column-count: 1;
	column-count: 1;
	}
	article#art2 div.caja div {
    height: 380px;
	}
	footer div#menupie {
		display:none;
		}
		
@media screen and (max-width:375px) {
	h1 {
		width:240px;
		background-size:100%;
		margin:15px 0 0 4px;
		}
	h2 {
		font-size:2.8em;
		}
	div#portada img#escudo {
		width:160px;
		height:auto;
		}
	div#portada img#foto2 {
		width:100px;
		height:auto;
		top:50%;
		}
	div#portada img {
		top:30%;
		}
	article#art1 div.caja div, article#art4 div.caja div {
		width:100%;
		}
	article#art3 div.caja {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
	}
	}