@charset "utf-8";
/* CSS Document */
/* RESET  */
* {
	margin: 0;
	padding: 0;
	font-size: 100%;
	box-sizing: border-box;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
	cursor: pointer;
	opacity: 1.0;
	color:#000000;
}

a:hover {
	opacity: 1;
}

img {
	max-width:100%;
	display:block;
	
}

.myButton {
	background-color:#000000;
	margin:0.7rem 0;
	padding:0.4rem;
	color:#ffffff;
	
}

.product_img img{
	text-align:center;
	margin:0 auto;
}

.text_box {
	font-size:1.1rem;
	text-align:center;
}

.clearfix {
	display: block;
    content: "";
    clear: both;
}


/*----------------------------------------------------------------PAGINA INDEX + HEADER + FOOTER ----------------------------------------------------------------------------*/

header {
  position: sticky;
  position: -webkit-sticky; /* For macOS/iOS Safari */
  top : 0;
  display: grid;
  grid-template-columns: 5% repeat(2, auto) 10% 20%;
  grid-template-rows: repeat(2, auto);
  gap: 0.5rem 0.5rem;
  grid-template-areas: "logo busca busca cart login" "logo menu menu cart login";
  min-width: 100%;
  margin: 0 auto;
  padding:0.5rem 1.0rem 0.2rem 1.0rem;
  background-color:#ffffff;
  -webkit-box-shadow: 0px 14px 10px -4px rgba(153,145,153,0.99);
  -moz-box-shadow: 0px 14px 10px -4px rgba(153,145,153,0.99);
  box-shadow: 0px 14px 10px -4px rgba(153,145,153,0.99);
  z-index:90;
  
}

.logo { grid-area: logo; }

.menu { grid-area: menu; }

.busca { grid-area: busca; }

.cart { grid-area: cart; }

.login { grid-area: login; }

/* BUSCA */
header .busca {
	padding:5px 0 0 0;
	width:100%;
	
}

header .search_text{
padding:8px 20px 0 15px;
color:#000000;
font-size: 1.1rem;
}


header .busca input {
	width:80%;
	height:2.5rem;
	font-size:1.5rem;
	border:1px solid #938F8F;
	border-bottom-color:#938F8F;
	border-right-color:#938F8F;
}

header .busca .src_btn {
	width:10%;
	margin-left:20px;
	font-size:1.3rem;
}

/* CART */
header .cart {
	margin: 0 1.0rem;
}

header .cart .cart_title {
	font-size: 1.0rem;
	padding-bottom:0.5rem;
	text-align:center;
	
}


/* MENU DE LOGIN */

header .login {
	margin-bottom: 2.0rem;
	text-align:center;
	
}

.login .titulo {
	font-size:1.1rem;
	font-weight:bold;
	margin-bottom: 1.5rem;
}

.drop {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #ffffff;
  color: white;
  padding: 1px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-align:left;
  text-decoration: none;
  display: block;
  
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #ffffff;
}
.redes {
	display:flex;
	flex-direction:row;
	flex-wrap:no-wrap;
	justify-content:center;
	align-items:flex-start;
	margin:1.0rem 0 0 0;
	
}

.redes img {
	padding:0 0.3rem;
	
}

/* MENU DE LOGIN */

/* BANNER */

.banner {
	display:flex;
	flex-direction:row;
	justify-content:center;
	margin: 1.0rem auto;
	padding: 0 0.3rem;	
}
/* MAIN */
.main {
	display:grid;
	grid-template-columns: 250px 1fr 100px;
	grid-gap:0px;
	padding:10px;
	margin:0 auto;
}

/* MENU LATERAL */

.menu_lateral {
	margin:1.0rem 0 4.0rem 0;
}

/* BANNER LATERAL */

.banner_lateral {
	display:flex;
	flex-direction:column;
	justify-content:flex-start;
	margin: 1.0rem auto;
	padding: 0 0.3rem;	
}
.banner_lateral div {
	border: solid #cccccc 2px;
}


.banner_lateral img {
	margin: 0 auto;
	
}

.produtos {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	align-content:flex-start;
	justify-content:flex-start;
	margin:0 0 0 1.0rem;
	
}

.produtos > div {
	width:14.5%;
	margin:0.9rem;
	padding:0.4rem;
	border-radius:1.0rem;
	border:solid thin #CCC;
	text-align:center;
	-webkit-box-shadow: 0px 10px 13px -7px #000000, 0px 9px 15px -5px rgba(109,109,109,0); 
	box-shadow: 0px 10px 13px -7px #000000, 0px 9px 15px -5px rgba(109,109,109,0);	
}

.produtos > div hr {
	 height:0.5rem;
	 background-color:#ff6501;
	 margin-bottom:0.5rem;
}

.produtos > div img {
	margin: 0 auto;
}

.produtos > div p a {
	font-size:1.3rem;
	color:#000000;
}

.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 0.1fr);
  gap: 10px 10px;
  grid-template-areas: "institucional sociais formas fale" "direitos direitos direitos direitos";
  background-color:#ccc;
  margin-botom: 0 auto;
  padding:1.0rem 0 0 1.0rem;
  height:auto; 
 
}

.institucional { grid-area: institucional; }

.sociais { grid-area: sociais; }

.formas { grid-area: formas; }

.fale { grid-area: fale; }

.direitos { grid-area: direitos; }

.footer_sociais {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	width:100%;
	
}

.footer_sociais h4 {
	width:100%;
	margin:0 0 0.7rem 0;
}

.footer_sociais img {
	padding:0 0.3rem;
	display:inline;
}

.institucional h4, .redes h4, .formas h4, .fale h4 {
	padding-bottom:0.5rem;
}

.institucional ul li {
	padding:0.5rem 0;
}

.institucional a {
	color:#000000;
	
}

.direitos {
	text-align:center;
}

.title_box {
	font-size:1.1rem;
	font-weight:bold;
	text-align:center;
}


@media (max-width: 700px) {    /* -----------------------------------------------------------------------*/

header {
position:relative;
display:flex;
flex-direction:row;
flex-wrap:wrap;

}

header .logo img {
	width:70%;
}

header .busca {
	margin:0 0 0.5rem 0;
	width:100%;
	
}

header .busca input {
	width:100%;
	height:2.5rem;
	font-size:1.5rem;
	border:1px solid #938F8F;
	border-bottom-color:#938F8F;
	border-right-color:#938F8F;
	
}

header .busca .src_btn {
	width:50%;
	font-size:1.1rem;
	margin: 1.0rem 0 1.0rem 0;
}

header .cart {
	width:100%;
	text-align:center;
	margin: 0.5rem 0 1.0rem 0;
}

header .login {
	width:100%;
	margin-bottom: 1.0rem;
	text-align:center;
}

.login .titulo {
	width:90%;
	font-size:1.1rem;
	font-weight:bold;
	margin-bottom: 2.0rem;
	text-align:center;
}

.dropbtn {
	font-size:0.8rem;
}

.banner {
	width:100%;
}

.main {
	display:flex;
	flex-direction:column;
	
}

.produtos > div {
	width:100%;
}

.footer {
	display:flex;
	flex-direction:column;
	padding:0 0.5rem;
}

.institucional, .redes, formas, .fale {
	margin-bottom:1.0rem;
}

.menu_lateral {
	display:none;
}

}

/*-----------------------------------------------------PAGINA DETALHES------------------------------------------------------------------------------*/
.detalhes {
  display: grid;
  grid-template-columns: 13% 20% 1fr;
  grid-template-rows: 65% 1fr;
  gap: 1px 1px;
  grid-template-areas: "banner_lateral product_img_big descricao" "banner_lateral veja veja";
  
}

.product_img_big { 
	grid-area: product_img_big;
	margin:1.0rem;
}

.descricao { 
	grid-area: descricao;
	margin:1.0rem;
	font-size:1.2rem;
}

.valores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 1px 1px;
  width:35%;	
}

.valores div {
	border:solid thin;
	padding:0 0 0 0.5rem;
}

.veja { grid-area: veja; margin-left:1.0rem;}

.titulo {
	margin:0 0 2.0rem 0;
	
}

.valor, .botao, .texto {
	margin:1.0rem 0;
}

.subTitulo {
	margin:0.7rem 0;
}


@media (max-width: 700px) {    /* -----------------------------------------------------------------------*/
.detalhes {
	display:flex;
	flex-direction:column;
	flex-wrap:no-wrap;
	align-content:center;
}

.banner_lateral img {
	width:90%;
	margin-bottom:1.0rem;
}

.product_img_big img {
	width:100%;
}

.descricao, .veja, .footer {
	font-size:70%;
}

.footer {
	font-size:90%;
}
}

/*-----------------------------------------------------PAGINA CART------------------------------------------------------------------------------*/
.main_cart {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    
}

.carrinho {
	display:flex;
	flex-direction:column;
	justify-content:flex-start;
	align-items:flex-start;
	padding:0 2.0rem;
	width:70%;
	margin:1.0rem 1.0rem 0 1.0rem;
}

.checkout {
	display:flex;
	flex-direction:row;
	justify-content:flex-start;
	align-items:flex-start;
	padding:0 2.0rem;
	width:70%;
	margin:1.0rem 1.0rem 0 1.0rem;
}

.radio-toolbar {
    flex-basis: 100%;
    height: 0;
    
}

.titulo_lista {
	font-size:1.8rem;
	font-weight:bold;
	text-align:center;
	width:100%;
	margin-bottom:1.0rem;	
	
}

.cl_lista form ul {
  list-style: none;
  margin: 10px;
  padding: 0;
}

.cl_lista form li {
  background:#F7F3E6;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
  margin: 8px 0;
  padding: 15px;
  display: grid;
  grid-template-columns: 0.5fr 4fr 0.5fr 0.5fr 1fr 1fr;
  grid-gap: 2px 8px;
  text-align:center;
  
}

.inp_qty {
	width:70%;
}


/* propriedades para evitar a quebra de texto */
.cl_lista form li > span {
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cl_lista form li > span .inp_qty {
	width:90%;
}

.aviso {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:bold;
	color:#ff0000;
	width:100%;
	margin-top:0.8em;
	text-align:left;
	/*border:solid thin;*/
}

.botoes {
	display:flex;
	flex-direction:row;
	flex-wrap:no-wrap;
	align-items:flex-start;
	justify-content:space-between;
	width:100%;
	margin:1.0rem 0;
	
}

.lnk_btn {
	background-color:#000000;
	color:#ffffff;
	padding: 0.6em 1.0em 0.6em 1.0em;
}

.destaques {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	margin-top:2.0rem;
	
}

.coluna2 {
	display:flex;
	flex-direction:column;
	justify-content:flex-start;
	align-items:flex-start;
	min-width:70%;
	margin:1.0rem 1.0rem 0 1.0rem;
        
}

.coluna3 {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
        width: 100%;
        margin-bottom: 2.0em;
}


@media (max-width: 700px) {    /* -----------------------------------------------------------------------*/
.main_cart {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
	width:97%;
	
}

.carrinho {
	width:91%;
	padding:0;
	margin-right:1.0rem;
	
}

.titulo_lista {
	font-size:1.0rem;
	font-weight:bold;
	text-align:center;
	width:100%;
	margin-bottom:1.0rem;	
	
}

.inp_qty {
	width:30%;
}

.botoes {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	align-items:flex-start;
	width:100%;
}

.lnk_btn, .dropbtn {
	margin:1.0rem 0;
}

.product_img {
	margin: 0 auto;
	text-align:center;
}

.coluna2 {
	display:flex;
	flex-direction:column;
	justify-content:flex-start;
	align-items:flex-start;
	width:100%;
	margin:0.2rem 0.2rem 0 0.2rem;
}

}

/*-----------------------------------------------------PAGINA CHECKOUT------------------------------------------------------------------------------*/

.checkout {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.conteudo_check {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
	width:70%;
	margin:4.0rem 0;
	
}

.login-form, .or, .signup-form {
	width:40%;
}

.form-login {
	display:flex;
	flex-direction:column;
	flex-wrap:no-wrap;
}

.form-login label {
	margin:0.9rem 0 0.2rem 0;
}

.form-login input {
	margin:0 0 0.6rem 0;
	height:2.5rem;
	border:solid thin;
	border-radius:0.2rem;
	border-color:#6E6E6E;
}

.form-login .myButton {
	background-color:#000000;
	margin:0.7rem 0;
	padding:0.4rem;
	text-transform:uppercase;
	color:#ffffff;
	width:30%;
}

.cl-login {
	margin:0.5rem 0;
}

.cl-login a {
	color:#000000;
	font-weight:bold;
}

/* ------------------------------------- RESUMO -------------------------------------------------*/
.periodo {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	align-content: stretch;
	width:100%;
	/*border: solid thin; */
}

.secao {
	float:left;
	padding:1.0em;
    flex-basis: 30%;
}

.forma {
	margin: 1.0em;
	width:20%;	
}

@media (max-width: 700px) {    /* -----------------------------------------------------------------------*/

.checkout {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	width:100%;
}

.conteudo_check {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    align-items: center;
	width:90%;
	margin:1.0rem 0;
}

.login-form, .or, .signup-form {
	width:100%;
}

.form-login label {
	font-size:0.8rem;
	margin:0.9rem 0 0.2rem 0;
}

.or {
	margin:1.5rem;
}

.form-login .myButton {
	color:#ffffff;
	width:40%;
}

.coluna2 {
	display:flex;
	flex-direction:column;
	justify-content:flex-start;
	align-items:flex-start;
	width:100%;
	margin:0.2rem 0.2rem 0 0.2rem;
}

}

/*------------------------------------------------CLIENTES ADICIONAR-------------------------------------------------*/

.cad_cliente {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.cadastro {
	width:70%;
	margin:2.0rem 0;
}

/* Container das ABAS */
.tabs-container {
    position: relative;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
	z-index:0;
}
.tabs-container p {
    margin: 0;
    padding: 0;
}
.tabs-container:after {
    content: '.';
    display: block;
    clear: both;
    height: 0;
    font-size: 0;
    line-height: 0;
    visibility: none;
}

/* ABAS */
input.tabs {
    display:none;
}
input.tabs + label + div {
    width: 100%;
    opacity: 0;
    position: absolute;
    background: #eee;
    top: 40px;
    left: 0;
    height: auto;
    padding: 10px;
    z-index: -1;
    transition: opacity ease-in-out .3s;
	
}
input.tabs:checked + label + div {
    opacity: 1;
    z-index: 1;
}

/* Labels */
input.tabs + label {
    line-height: 40px;
    padding: 0 20px;
    float: left;
    background: #444;
    color: #fff;
    cursor: pointer;
    transition: background ease-in-out .3s;
	
}
input.tabs:checked + label {
    color: #000;
    background: #eee;
}

.tabs-container .cl-item {
	width:30%;
	margin:1.0rem 1.0rem;
	
}

.tabs-container .cl-item input, select {
	height:2.0rem;
	width:100%;
}

.form-cad {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}



.cad_cliente {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
	width:100%;
	
}

.cad_cliente .banner_lateral {
	width:97%;
}

.cad_cliente .form-cad {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
	width:100%;
	
}

.cadastro {
	width:88%;
	margin:2.0rem 1.0rem;
	height:93.0rem;
}


.tabs-container .cl-item {
	width:90%;
	margin:0.5rem 1.0rem;
	
}












	
