/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */

audio,
canvas,
img,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */


/* ------------------ FONTS ------------------ */
/*

font-family: 'Questrial', sans-serif;			<-PARAGRAFO / TITULO
font-family: 'News Cycle', sans-serif;			<-PARAGRAFO / 
font-family: 'Pompiere', cursive;				<-TITULO 
font-family: 'PT Sans', sans-serif;				<-PARAGRAFO / 
font-family: 'Tinos', serif;					<-PARAGRAFO / 
font-family: 'Bad Script', cursive;				<-TITULO
font-family: 'Simonetta', cursive;				<-PARAGRAFO / TITULO
font-family: 'Flamenco', cursive;				<-TITULO
font-family: 'Offside', cursive;				<-TITULO
font-family: 'Fugaz One', cursive;				<-TITULO
font-family: 'Della Respira', serif;			<-PARAGRAFO / TITULO
font-family: 'Ovo', serif;						<-PARAGRAFO SERIF
font-family: 'Convergence', sans-serif;			<-PARAGRAFO / TITULO
font-family: 'Exo', sans-serif;					<-TITULO
font-family: 'Voltaire', sans-serif;			<-TITULO
font-family: 'Alegreya', serif;					<-PARAGRAFO SERIF
font-family: 'Baumans', cursive;				<-TITULO
font-family: 'Raleway Dots', cursive;			<-TITULO DOTS XPTO
font-family: 'Imprima', sans-serif;				<-PARAGRAFO / TITULO - MUITO BOM
font-family: 'Signika', sans-serif;				<-PARAGRAFO / TITULO - MUITO BOM
font-family: 'Spinnaker', sans-serif;			<-PARAGRAFO / TITULO - MUITO BOM
font-family: 'Trochut', cursive;				<-TITULO
font-family: 'Julius Sans One', sans-serif;		<-TITULO - small caps
font-family: 'Didact Gothic', sans-serif;		<-PARAGRAFO / 

*/
/* ------------------ /FONTS ------------------ */



body{
	
	position:relative;
}

p{
	/*font-family: 'Imprima', Verdana, Geneva, sans-serif;*/
	font-family: 'Signika', sans-serif;
	font-size:12px;
}

a{
	text-decoration:none;
	
}

h1{
	font-family: 'Voltaire', sans-serif;
	font-size:50px;
}
h2{
	font-family: 'Signika', sans-serif;
	font-size:30px;
}
h3{
	font-family: 'Signika', sans-serif;
	font-size:25px;
}
h4{
	font-family: 'Signika', sans-serif;
	
	font-size:20px;
}

/*----------------------------------------------------------------------
	HEADER / MENU
----------------------------------------------------------------------*/

.logo {
	width:100px;
	height:100px;
	margin:0;
	padding:0;
	background-color:white;
	position:fixed;
	top:0px;
	left:0px;
	-webkit-box-shadow:0 0 10px #222;
	box-shadow:0 0 10px #222;
	overflow:hidden;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}

.logo img{
	width:100px;
	height:100px;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}

header {	
	margin:0;
	padding:0;
	position: fixed;
	width:200px;
	height:100%;
	top:0;
	left:-150px;
	background-color:#222;
	color:#FFF;
	-webkit-box-shadow:0 0 5px #222;
	box-shadow: 0 0 5px #222;
	z-index:1000;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}

header:hover {
	left:0;
}
header:hover .logo {
	width:200px;
	height:200px;
}
header:hover .logo img{
	width:200px;
	height:200px;
}

header nav {
	margin-top:200px;
}

header ul{
	margin:0;
	padding:0;
	list-style-type:none;
	text-transform:uppercase;
	font-size:14px;
}

header ul li {
	margin:0;
	padding:0;
	border-bottom: 1px solid #33;
	cursor:default;
}
header ul li {
	border-top:1px solid #333;
}
header ul li:last-child {
	border-bottom:1px solid #333;
}

header ul li p{
	width:150px;
	margin:0;
	padding:0;
	display:inline;
}

header ul li a {
	width:200px;
	height:50px;
	margin:0;
	padding:0;
	display:block;
	text-align:right;
	color:#AAA;
	background-color:#222;
	-webkit-transition: all .5s ease-in;
	transition: all .5s ease-in;
}
header ul li a:hover {
	color:#222;
	background-color:#86cb3d;
}


header ul li img{
	width:30px;
	margin:10px;
	margin-left:10px;
}

/*----------------------------------------------------------------------
	TOPBAR
----------------------------------------------------------------------*/

.topbar {
	width:100%;
	height:50px;
	margin:0;
	padding:0;
	position: fixed;
	top:0;
	background-color:#EBEBEB;
	color:#AAA;
	z-index:900;
	-webkit-box-shadow:0 0 5px #222;
	box-shadow:0 0 5px #222;
}


/*----------------------------------------------------------------------
	CARRINHO
----------------------------------------------------------------------*/


.carrinho{
	width: 310px;
	margin: 0;
	padding: 0;
	position:fixed;
	right:-240px;
	top:0;
	font-size: 12px;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}

.carrinho ul {
	list-style-type:none;
	margin: 0;
	padding: 0;
	}
	
.carrinho ul.cart-list {
	position:fixed;
	top:70px;
	right:-310px;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
	}

.carrinho:hover, .carrinho:hover ul.cart-list {
	right:0;
	
}
	
	
.carrinho li.artigo{
	margin:0;
	background-color:#222;
	border:2px solid #333;
	border-bottom:none;
}
.carrinho li.artigo:last-child{
	border-bottom:2px solid #333;
}
.carrinho .cart-list li.artigo img{
	background-color: #222;
}

.carrinho img{
	width:50px;
	margin:0;
	padding:10px;
	float:left;
	background-color:#222;
	border-right:1px solid #333;
	}

.carrinho div.cartigo{
	float:left;
	width:125px;
	height:50px;
	margin:10px 0;
	padding:0;
	
	}
.carrinho div.cartigo p{
	margin-left:10px;
	margin-top:15px;
	color:#FFF;
	
	}

.carrinho div.cpreco{
	float:left;
	width:50px;
	height:50px;
	margin:10px 0;
	padding:0;
	background-color:#EBEBEB;
	color:#111;
	}
.carrinho div.cpreco p{
	margin-top:15px;
	text-align:center;
	}

.carrinho li .remover {
	width:50px;
	height:50px;
	margin:10px 10px 10px 0;
	padding:0;
	float:left;
	border:none;
	background:url(../img/remove-btn.png) no-repeat;
}


.carrinho .footer-carrinho{
	width:310px;
	height:40px;
	margin:0;
	padding:0;
	background-color: #EBEBEB;
	-webkit-box-shadow:0 0 10px #222;
	box-shadow:0 0 10px #222;
	
}

.carrinho .footer-carrinho li div{
	margin:0;
	padding:0;
	background-color:#222;
	border-left:1px solid #333;
}


.carrinho div.carrinho-btn{
	width:70px;
	height:50px;
	margin:0;
	padding:0;
	float:left;
	background-color: #EBEBEB;
	}
.carrinho div.carrinho-btn img{
	width:30px;
	margin:0;
	padding:10px 20px;
	border:none;
}

.carrinho div.ctotal{
	text-align:center;
	float:left;
	width:65px;
	height:50px;
	margin:0;
	padding:0;
	color: white;
	}
.carrinho div.ctotal p {
	padding-top:5px;
	}

.carrinho .checkout-btn{
	margin:0;
	width: 107px;
	height: 60px;
	text-transform:uppercase;
	
	background-color:#86cb3d;
	color: #FFF;
	border:none;
	float:left;
	
}
.carrinho .checkout-btn p{
	margin:0;
	padding:0;
	padding-top:20px;
	text-align:center;
	font-size:14px;
}

/*----------------------------------------------------------------------
	SLIDESHOW
----------------------------------------------------------------------*/

.slideshow{
	width: 100%;
	height: 400px;
	margin: 0 auto;
	overflow: hidden;
	background-color:#EBEBEB;
	position:fixed;
	top:0;
	left:25px;
}

.slideshow .holder{
	width: 6400px;
	height: 400px;
	position: relative;
}

.slideshow .holder div{
	width: 1600px;
	height:400px;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
}

.slideshow .holder div img{
	width: 100%;
	display: block;
}

.controls-slideshow{
	width: 120px;
	margin:10px auto;	
	position:relative;
	top:-50px;
}

.controls-slideshow div{
	width: 15px;
	height: 15px;
	border:1px solid #222;
	background: #86cb3d;
	float: left;
	margin: 5px;
	cursor: pointer;
	
}


/*----------------------------------------------------------------------
	CONTEUDO
----------------------------------------------------------------------*/


.wrapper {
	width:100%;
	margin:0;
	padding:0;
	position:relative;
	
}





/*----------------------------------------------------------------------
	LOJA
----------------------------------------------------------------------*/

.loja  {
	margin:0;
	padding:0;
	margin-top:398px;
	margin-left:50px;
	background-color:#EBEBEB;
}

.loja .header-loja{
	margin:0;
	padding:0;
	background-color:#222;
	border-bottom: 2px solid #EBEBEB;	
	color:#FFF;
}

.loja .header-loja h1{
	margin:0;
	padding:10px 0;
	text-align:center;
}

.loja .produtos {
	width:900px;
	margin:0 auto;
	padding:0;
	background-color:#EBEBEB;
}

.loja .produtos .header-produtos{
	
}
.loja .produtos .header-produtos h2{
	margin:0;
	padding:10px 0;
	
	text-align:center;
}

.loja .produtos .header-produtos p{
	width:400px;
	margin:0 auto;
	padding:0;
	font-size:16px;
	color:#909085;
	text-align:center;
	border-bottom:1px dotted #AAA;
}

.loja .header-produtos .cat-drop{
	width:150px;
	margin:0 auto;
	padding:0;
	list-style-type:none;
	text-align:center;
	color:#EBEBEB;
	background-color:#222;
	border:2px solid #333;
	display:inline-block;
	float:right;
	display:none;
}

.loja .header-produtos .cat-droptitle {
	margin:0;
	padding:10px 0;
	border-bottom:2px solid #333;
	background-color:#222;
	color:#EBEBEB;
}

.loja .header-produtos .cat-droplist{
	margin:0;
	padding:0;
	display:none;
	list-style-type:none;
}
.loja .header-produtos .cat-droplist li{
	margin:0;
	padding:10px 0;
	border-bottom:2px solid #333;
}
.loja .header-produtos .cat-droplist li:last-child{
	border-bottom:none;
}





.loja .produtos ul.lista-produtos{

	margin:0;
	padding:0;
	list-style-type:none;
	
}

.loja .produtos li.insideimg{
	width:240px;
	height:200px;
	margin:10px;
	overflow:hidden;
	position:relative;
	float:left;
	border:20px solid #222;
	background-color:#909085;
}
.loja .produtos li.insideimg a:first-child{
	padding:10px;
	color:#EBEBEB;
	font-family: 'Signika', sans-serif;
	font-size:16px;
}


/*----- hover icons -----*/

.loja .produtos li.insideimg .view-icon{
	background:url(../img/view-icon-614x460.png) no-repeat;
	width: 50px;
	height: 50px;
	position: absolute;
	top:200px;
	right:71px;
	-webkit-transition: all .35s ease-in;
	transition: all .35s ease-in;
}
.loja .produtos li.insideimg .link-icon{
	
	width: 70px;
	height: 50px;
	padding-top:15px;
	position: absolute;
	top:150px;
	right:0;
	background-color:#111;
	text-align:center;
	color:#EBEBEB;
	font-family: 'Signika', sans-serif;
	font-size:16px;
}

.loja .produtos li.insideimg:hover .view-icon{
	top:150px;
}


.footer-produtos{
	margin:0;
	padding:0;
	
	color:#222;
	text-align:center;
}
.footer-produtos h3{
	width:400px;
	margin:0 auto;
	padding:10px 0;
	padding-bottom:0;
	border-top:1px dotted #AAA;
	color:#909085;
}




.footer-loja{
	margin:0;
	margin-top:10px;
	padding:50px 0;
	background-color:#222;
	color:#EBEBEB;
	text-align:center;
}


.footer-loja .social{
	width:640px;
	margin:0 auto;
	
}
.footer-loja .social img {
	float:left;
}









/*----------------------------------------------------------------------
	DETALHE PRODUTO
----------------------------------------------------------------------*/

.content-produto{
	width:1000px;
	margin:0 auto;
	padding:0;
	background-color:#0CC;
}


.descricao-left{
	width:250px;
	margin:0;
	margin-left:50px;
	padding:0;
	background-color:#9C0;
	float:left;
}

.descricao-left h1{
	margin:0;
	text-align:center;
	
}

.descricao-left p{
	margin: 25px;
	
}

.descricao-right{
	width:600px;
	height:600px;
	margin:0 50px;
	padding:0;
	float:left;
	
}

.descricao-right img{
	width:100%;
	height:100%;
}


























/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
