body{
	background: #ffff;
	font: 16px Century Gothic, sans-serif;
	margin: 0px;
	padding: 0px;
}

#principal {
	max-width: 100%;
	min-width: 70%;
}

#conteudo h1{
  color: #03bbbb;
  margin-top: 30px;
  margin-bottom: 0px;
}

.cores-disponiveis {
  margin-top: 8px;
}

.cor {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 6px;
  border: 1px solid #ccc;
}


/*INÍCIO -- MENU*/
#menu {
	background-color: #d0d0d0;
	font: 16px sans-serif;
	padding: 20px 20px 15px 20px;
	display: flex;
  align-items: center; /* Alinha verticalmente */
  /*justify-content: space-between;/*alinha as duas classes nas estremidades*/
  gap:30px;
  margin-bottom: 0px;
}

#menu img{
  text-align: center;
  float:left;
  height: auto;
}

#menu a {
	font-family: 'Century Gothic', sans-serif;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	padding: 5px;
}

#menu a:hover {
  color: #03bbbb; /* cor quando o mouse passa por cima */
}

#menu	a.ativo {
	color: #03bbbb;
	font-weight: bold;
}

.links{ /*class para alinhar links à esquerda e ícones à direita no menu*/
	align-items: center; /* Alinha verticalmente */
	display: flex;
	gap: 30px;
}

.contato{ /*class para alinhar links à esquerda e ícones à direita no menu*/
	align-items: center; /* Alinha verticalmente */
	display: flex;
	gap: 5px;
}

.icones{
	/*justify-content: right;----------------------------*/
	width: 30px;
}



/* Estilo padrão - desktop */
.hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
}

.logo {
  display: flex;
  align-items: center;
}

.menu-desktop {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}

.menu-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 40%;
  height: 100vh;
  background-color: #d0d0d0;
  z-index: 1000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 60px;
  gap: 20px;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.menu-mobile.show {
  display: flex;
}

.menu-mobile .links,
.menu-mobile .contato {
  flex-direction: column;
  align-items: center;
}

.menu-mobile .links a,
.menu-mobile .contato a {
  padding: 10px;
}

.menu-mobile .contato a {
  margin-top: 15px;
}

.fechar-menu {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}
/*FIM -- MENU*/

/*INÍCIO -- BANNER*/
.banner{
	display: flex;
	margin-top: 10px;
	justify-content: center;
	
	img{
		width: 90%;
		margin: 10px;
		/*width: 1368px;
		height: 475px;*/
	}
}
/*FIM -- BANNER*/

/*INÍCIO -- PROMOÇÕES*/

.promocao { /*FAIXA DE PROMOÇÃO*/
  margin-top: 15px;
  width: 100%;
  overflow: hidden;
  background: #03bbbb;
  color: #ffff;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  box-sizing: border-box;
}

.promocao span {
  flex-shrink: 0;
}

    @keyframes deslizar {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
    }

.textopromocao { /*TEXTO DA FAIXA DE PROMOÇÃO*/
  display: inline-flex;
  gap: 50px; /* distância entre as frases */
  animation: deslizar 45s linear infinite;

}

.containerpromo { /*CONTAINER DA ÁREA DOS PRODUTOS DA PROMO*/
  display: flex;
  margin: 0;
  padding: 30px;
  background-color: #d0d0d0;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
  gap: 30px;


  flex-wrap: wrap;

}

.produtospromo {
  display: block;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 20px;
  margin: 0px 60px;
  padding: 10px 10px 10px 10px;
  background-color: #ffff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.produtospromo img{
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 20px;
}

/*FIM -- PROMOÇÕES*/

#conteudo{
	padding: 10px;
}

/*FILTROS*/
.filtros {
  margin: 20px 0px;
  display: flex;
  flex-wrap: wrap; /* Permite quebrar linha */
  gap: 10px; /* Espaço entre os botões */

}
.filtros a {
  display: inline-block;
  font-family: 'Century Gothic', sans-serif;
  color: #03bbbb;  
  text-decoration: none;
  font-weight: bold;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 70px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  margin-left: 10px;
  transition: 0.3s;
  white-space: nowrap;
}

.filtros a:hover {
    background: #03bbbb;
    color: #fff;
}

.filtros a.ativo {
    background: #03bbbb; /* Cor de destaque */
    color: #fff;
}

/*FILTROS*/

/*INÍCIO -- PRODUTOS*/
.produtos {
  margin: 5px 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.produto {
  background: white;
  padding: 1rem;
  border: 1px solid #ddd;
  width: 100%;
  max-width: 200px;
  height: 350px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.produto h3{
	font-family: 'Century Gothic', sans-serif;
}

.produto h4{
  font-size: 20px;
  color: green;
}

.produto img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 4px;
}

.btnvoltar {
  margin: 20px 0px 0px 10px;
}

.btnvoltar a {
  background-color: #03bbbb;
  color: #ffff;
  border-radius: 25px;
  text-decoration: none;
  margin: 15px 0px;
  padding: 12px;
  font-weight: bold;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  margin-left: 10px;
  transition: 0.3s;
  white-space: nowrap;
}

.btnvoltar a:hover {
  background-color: #ffff;
  color: #03bbbb;
  border: 1px solid #ddd;
}

/*FIM -- PRODUTOS*/

/*INÍCIO -- RODAPE*/
#rodape {
	background-color: #d0cece;
	margin-top: 20px;
	text-align: center;
	align-items: center;
  color: white;
  min-height: 180px;
}

.rodape-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0px 60px;
}

.rodapecoluna{
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  flex: 1;
  padding: 0px;
  min-width: 300px;
}

.rodapecoluna img{
  align-items: flex-end;
}

.logospagamentos{
  margin-top: 15px;
  gap: 15px;
  display: flex;
  align-items: center;
}

.direitos p{
  margin-top: 25px;
  font-size: 12px;
}
/*FIM -- RODAPE*/

/*INÍCIO -- LOGIN*/
#containerlogin {
	width: 400px;
	height: 300px;
	background: #d0d0d0;
	border-radius: 10px;
	margin: 0 auto;
	margin-top: 180px;
	text-align: center;
}

#containerlogin img{
	width: 80px;
	height: 80x;
	margin-top: -80px;
	margin-bottom: 30px;
}

#containerlogin input{
	height: 40px;
	width: 80%;
	font-size: 18px;
	margin-bottom: 10px;
	background-color: #fff;
	padding-left: 40px;
	border: none;
	background-repeat: no-repeat;
	background-position: 6px;
	background-size: 30px;
}

input.email {
	background-image: url(imagens/icones/usuariosemfundo.png);
}

input.senha {
	background-image: url(imagens/icones/cadeadosemfundo.png);
}

input.submit {
	color: #fff;
	background-color: #f79300;
	border: 2px solid #db7d00;
}
/*FIM -- LOGIN*/

/*INÍCIO -- PRODUTOS*/

    .produto-container {
      display: flex;
      max-width: 1300px;
      margin: 20px auto;
      padding: 20px;
      gap: 120px;
    }

    .zoom-lente {
      position: relative;
      width: 400px;
      height: auto;
      overflow: hidden;
      border-radius: 20px;
    }

    .zoom-lente img {
      width: 100%;
      height: auto;
      transition: transform 1.1s ease;
      display: block;
      transform-origin: center center;
    }

    .produto-info {
      flex: 1;
      width: 600px;
    }
    .produto-info h1 {
      color: #03bbbb;
      font-size: 38px;
    }
    .produto-info p {
      font-size: 18px;
      line-height: 1.5;
    }
    .preco {
      color: #00a859;
      font-weight: bold;
      font-size: 35px;
      margin: 20px 0;
    }
    .botao-comprar {
      background-color: #03bbbb;
      color: white;
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 18px;
      cursor: pointer;
    }
    .botao-comprar:hover {
      background-color: #03acac;
    }

.miniatura{
	margin-top: 10px;
	display: flex;
	gap: 10px;
}

.miniatura img{
	width: 70px;
	height: 70px;
	border-radius: 6px;
  object-fit: cover;
  border: 2px solid #ccc;
  cursor: pointer;	
}

.miniaturas:hover {
  border-color: #03bbbb;
  transform: scale(1.1);
}

    .imagem-principal {
      width: 100%;
      max-width: 400px;
      border-radius: 10px;
      margin-bottom: 10px;
    }

	/*INÍCIO -- seletor de cores*/
.seletor-cores {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.cor-box {
  width: 40px;
  height: 40px;
  border-radius: 10px; /* Arredondamento das bordas */
  border: 2px solid #ccc;
  cursor: pointer;
  transition: border 0.4s, transform 0.4s;
}

.cor-box:hover {
  border-color: #ccc;
  transform: scale(1.1);
}
	/*FIM -- seletor de cores*/



.tamanhos {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.tamanhos input[type="radio"] {
  display: none; /* esconde os botões nativos */
}

.tamanhos label {
  padding: 10px 20px;
  border: 2px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  background-color: #f9f9f9;
  transition: 0.2s ease;
}

.tamanhos label:hover {
  border-color: #03bbbb;
}

.tamanhos input[type="radio"]:checked + label {
  background-color: #03bbbb;
  color: white;
  border-color: #03bbbb;
}

/*FIM -- PRODUTOS*/




/* RESPONSIVIDADE PARA CELULARES */
@media (max-width: 768px) {

  /* Banner */
  .banner img {
    width: 100%;
    height: auto;
  }

  /* Produtos: ocupar 100% da largura */
  .produto {
    width: 100%;
  }

  .produto h4{
    font-size: 17px;
    color: green;
  }

  /* Texto centralizado */
  #conteudo {
    padding: 15px;
    text-align: left;
  }

  /* Container de produto (na página de produto) */
  .produto-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .produto-info {
    width: 100%;
    text-align: left;
  }

  .produto-info h1 {
    font-size: 24px;
  }

  .produto-info p {
    font-size: 16px;
  }

  .preco {
    font-size: 28px;
    text-align: center;
  }

  .preco h2{
  font-size: 50px;
  text-align: center;
  }

  .botao-comprar {
    width: 100%;
  }

  /* Login responsivo */
  #containerlogin {
    width: 90%;
    margin-top: 80px;
  }
}


/* Estilo responsivo - celular */
@media (max-width: 768px) {

  .menu-desktop {
    display: none;
  }

  .menu-desktop {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .fechar-menu {
    display: block;
  }
}


/*INÍCIO -- SOBRE NÓS*/
.conteudosobrenos {
  font: 18px Century Gothic, sans-serif;
  display: flex;
  justify-content: center;
  padding: 10px;
  /*border-radius: 20px;
  background-color: #d0d0d0;*/
  margin: 15px;
  gap: 50px;
}

.textohistoria {
  background-color: #03bbbb;
  color: #ffff;
  padding: 10px;
  width: 60%;
  border-radius: 8px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
}

.textohistoria h1{
  text-align: center;
  color: #ffff;
}

.pqescolhercontainer{
  background-color: #E8E6E6;
  /*margin: 15px;
  border-radius: 10px;*/
  padding: 15px;
}

.pqescolher{
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  gap: 40px;
  /*border: 1px solid green;*/
  padding: 10px;

}

.pqescolhertitulo{
  text-align: center;
  color: #03bbbb;
}

.motivos{
  font: 16px Century Gothic, sans-serif;
  color: #ffff;
  background-color: #03bbbb;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
}

.quadros {
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin: 20px 15px;
  gap: 20px 240px;
  /*border-radius: 20px;
  background-color: #d0d0d0;*/
  padding: 10px;
}

.quadro {
  font: 16px Century Gothic, sans-serif;
  color: #ffff;
  background-color: #03bbbb;
  max-width: 200px;
  padding: 20px;
  /*border: 1px solid red;*/
  border-radius: 8px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
}

.quadro h4{
  font-size: 22px;
  color: #ffff;
}

@media (max-width: 768px) {

.textohistoria{
  width: 90%;
}

}

/*FIM -- SOBRE NÓS*/




