html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, hr, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin:0; padding:0; border:0; background:transparent;
  /*vertical-align: baseline;*/
}

/* lists */
.list-full, .list-full li,
.list-auto, .list-auto li { width: 100%; float: left; display: block; position: relative; }
.list-auto, .list-auto li { width: auto; }


/* menu */

.menu-header {
	float: right;
	padding-left: 20px;
	min-height: 100px;
	padding-top: 2px;
	margin-top: 0px;
	background-image: url(../img/bg-menu-2.png);
	background-repeat: no-repeat;
	margin-right: 15px;
}
/* logo */
#logo {
	height: 80px;
	width: 440px;
	float: left;
	margin-top: 60px;
}
#logo  a{
	display: block;
	width: 440px;
	height: 80px;
	overflow: hidden;
	text-indent: -9999px;
	margin-top: 0px;
	margin-left: 0px;
	background-image: url(../img/logo-recanto-albertosalomao.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	margin-bottom: 0px;
	margin-right: 5px;
}


body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #333;
	background-color: #006;
}

header {
	min-height: 150px;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 2;
	background-color: #006;

}
.header-inner {
	max-width: 1005px;
	margin-right: auto;
	margin-left: auto;
	padding-left: 0px;
	min-height: 150px;
	background-image: url(../img/img-header.jpg);
	background-repeat: no-repeat;
	background-position: center;
}

header h1 {
  padding: 10px 0 0 10px;
}

header h1 a {
  color: #333;
}

header ul {
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 0;
}

header li {
  border-left: 1px solid #ccc;
}

header li:first-child {
  border: none;
}

header li a {
	display: block;
	color: #FF0;
	font-size: 10pt;
	line-height: 30px;
	text-decoration: none;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 0;
	padding-left: 15px;
	font-weight: normal;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

header li a:hover {
	color: #FF0;
	background-color: #39F;
}

input#control-nav {
  visibility: hidden;
  position: absolute;
  left: -9999px;
  opacity: 0;
}



@media screen and (max-width: 767px) {
  .menu-header {
	background-image: url(../);
	margin-right: 0px;
  }
  
  header nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 250px;
	border-left: 1px solid #ccc;
	background: #006;
	overflow-x: auto;
	z-index: 2;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	-webkit-transform: translate(100%, 0);
	-ms-transform: translate(100%, 0);
	transform: translate(100%, 0);	
  }

  header ul.list-auto {
    padding: 0;
  }

  header ul.list-auto li {
    width: 100%;
    border: solid #ccc;
    border-width: 0 0 1px;
  }

  header li a {
    padding: 15px 10px;
  }

  header li a:hover {
    background-color: #0000AE;
  }

  .control-nav { /* label icon */
	position: absolute;
	right: 20px;
	top: 20px;
	display: block;
	width: 30px;
	border: solid #fff;
	border-width: 3px 0;
	z-index: 2;
	cursor: pointer;
	background-color: #006;
	padding-top: 5px;
	padding-bottom: 5px;
  }

  .control-nav:before {
	content: "";
	display: block;
	height: 3px;
	background: #fff;
  }

  .control-nav-close {
    position: fixed; /* label layer */
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: 1;
    background: rgba(0,0,0,0.4);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
  }

  /* checked nav */
  input#control-nav {
    display: block;
  }

  input#control-nav:focus ~ .control-nav {
    border-color: #000;
    box-shadow: 0px 0px 9px rgba(0,0,0,0.3);
  }

  input#control-nav:focus ~ .control-nav:before {
    background: #000;
  }

  input#control-nav:checked ~ nav,
  input#control-nav:checked ~ .control-nav-close {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  header+section {
    padding-top: 80px;
  }

  section {
    padding: 30px 15px 10px;
  }

  .highlights {
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
  }

  .highlights-item {
    width: 100%;
    margin-left: 0;
    position: absolute;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }

  .highlights-item p {
    opacity: 0;
    -webkit-transition: opacity 500ms 500ms ease-in-out;
    transition: opacity 500ms 500ms ease-in-out;
  }

  .highlights-buttons {
    display: block;
    padding-top: 10px;
  }

  /*checked*/
  .highlights input:checked + div {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .highlights input:checked + div p {
    opacity: 1;
  }

  .highlights input:nth-of-type(1):checked ~ .highlights-buttons label:nth-child(1),
  .highlights input:nth-of-type(2):checked ~ .highlights-buttons label:nth-child(2),
  .highlights input:nth-of-type(3):checked ~ .highlights-buttons label:nth-child(3) {
    background-color: #000
  }

  .modal-content {
    padding: 10px 5%;
    min-width: 88%;
  }
}

@media screen and (max-width: 480px) {
  header h1 {
    font-size: 20px;
    line-height: 40px;
  }
}
