* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

:root {
  --main-color: white;
  --secundary-color: #c0bbbb;
  --tertiary-color: #6fa9e4;
}

html {
  background-color: white;
  scroll-behavior: smooth;
  height: auto;
  overflow-x: hidden;
}

body {
  height: 120vh;
  background: white;
}

header {
  height: 0vh;
  left: 0;
  top: 0;
  z-index: 12;
}

.mensagem-reserva {
  position: absolute;
  top: 40%;
  left: 30%;
  font-size: 50px;
  color: var(--tertiary-color);
  text-align: center;
}

/* efeito universal ______________________________________________________________________________________ */
.efeito1,
.efeito2,
.efeito3,
.efeito4,
.efeito5 {
  opacity: 0;
}

@keyframes esquerda {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes subir {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes descer {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.efeito1.visivel {
  animation: subir 0.8s ease-out forwards;
}

.efeito2.visivel {
  animation: subir 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

.efeito3.visivel {
  animation: subir 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

.efeito4.visivel {
  animation: descer 0.9s ease-out forwards;
  animation-delay: 0.6s;
}

.efeito5.visivel {
  animation: esquerda 0.8s ease-out forwards;
}

.logo img {
  width: 7%;
  height: auto;
  position: absolute;
  left: 25%;
  top: -3%;
  z-index: 2;
}

.menu {
  position: relative;
  z-index: 1;
  display: flex;
}

.menu ul {
  position: absolute;
  display: flex;
  gap: 35px;
  left: 35%;
  top: 18px;
}

.menu li {
  color: rgb(0, 0, 0);
  font-size: 17px;
  cursor: pointer;
  z-index: 2;
}

.menu li:hover {
  color: rgb(0, 0, 0);
  transform: scale(1.1);
  transition: 0.2s;
}

.menu-icones ul {
  position: absolute;
  left: 70%;
  top: 18px;
  display: flex;
  gap: 23px;
  z-index: 1;
  cursor: pointer;
}

.menu-icones ul {
  color: rgb(0, 0, 0);
  font-size: 18px;
}

.menu-icones li:hover {
  color: black;
  transform: scale(1.2);
  transition: 0.2s;
}

/* menu responsivo _____________________________________________________________ */
.menu-responsivo {
  top: 20px;
  left: 20px;
  z-index: 1;
  cursor: pointer;
  display: none;
}

#iconeMenu {
  font-size: 30px;
  color: rgb(0, 0, 0);
  transition: transform 0.3s ease, color 0.3s ease;
}

#iconeMenu.menu-aberto {
  color: black;
  position: fixed;
}

.menu-lateral {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 5;
  transition: left 0.5s ease;
  box-shadow: -4px 0 8px;
  padding: 20px;
  overflow-y: auto;
}

.menu-lateral.active {
  left: 0;
}

.menu-lateral h2 {
  font-size: 27px;
  color: #000;
  margin-left: 270px;
  margin-top: -8px;
  margin-bottom: 50px;
}

.titulo-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 23px;
  color: #000000;
  margin-top: 13px;
}

.linha-cima,
.linha-baixo {
  width: 100%;
  border: none;
  border-top: 1px solid #2c2c2c;
  margin: 2px 0;
  transition: transform 0.5s ease;
}

.titulo-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  color: #000000;
  cursor: pointer;
  padding: 0 10px;
}

.links-expandidos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  margin-top: 10px;
  padding: 0 10px;
}

.links-expandidos.ativo {
  max-height: 500px;
  opacity: 1;
}

.seta-toggle {
  font-size: 24px;
  color: #000000;
  transition: transform 0.3s ease;
}

.titulo-menu.ativo .seta-toggle {
  transform: rotate(90deg);
}

.links-expandidos a {
  color: #000000;
  font-size: 16px;
}

.icone-responsivo-container {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 92%;
  width: 100%;
  background-color: var(--tertiary-color);
  padding: 10px 0;
  box-shadow: 0 -2px 5px var(--tertiary-color);
  border-radius: 20px 20px 0px 0px;
}

.icone-responsivo ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.icone-responsivo li a {
  font-size: 33px;
  transition: color 0.3s ease;
}

.icone-responsivo li a:hover {
  color: var(--tertiary-color);
}

.icone-responsivo img {
  width: 28px;
  height: auto;
  object-fit: contain;
}

/* parte do hover do menu _____________________________________________________________________ */

.menu-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 30vh;
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  display: none;
  padding: 20px;
}

header.overlay-ativo .menu li {
  color: #000000;
}

header.overlay-ativo .menu-icones li {
  color: #000000;
}

.menu-content {
  display: none;
  color: black;
  font-size: 18px;
  margin-top: 50px;
  width: 40%;
  padding-left: 50px;
  height: 80%;
  margin-left: 574px;
}

.menu-titulo {
  color: var(--tertiary-color);
  font-size: 20px;
}

.menu-content a {
  display: block;
  color: black;
  font-size: 27px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.links-rapidos {
  position: absolute;
  left: 58%;
  top: 25%;
  display: block;
  margin-bottom: 50px;
}

.links-rapidos h2 {
  color: var(--tertiary-color);
  font-size: 20px;
}

.links-rapidos a {
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 20px;
}

/* barra de pesquisa _______________________________________________________________________________ */
.barra-pesquisa {
  position: absolute;
  top: 0;
  right: 0;
  background-color: white;
  width: 100%;
  height: 7%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 5;
}

.barra-pesquisa input {
  width: 50%;
  height: 70%;
  margin-left: 500px;
  margin-top: 10px;
  border: 1px solid #000;
  border-radius: 12px;
  color: var(--tertiary-color);
  padding-left: 20px;
  font-size: 20px;
}

.barra-pesquisa input::placeholder {
  color: var(--tertiary-color);
  padding-left: 0px;
}

.barra-pesquisa button {
  background-color: transparent;
  margin-left: -50px;
  color: rgb(0, 0, 0);
  font-size: 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  transform: translateY(20%);
}

.fechar-pesquisa {
  position: absolute;
  top: -6px;
  right: 18%;
}

.fechar-pesquisa i {
  color: var(--tertiary-color);
  font-size: 42px;
}

.fechar-pesquisa i:hover {
  color: black;
}

#fundoEscuro {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1;
}

/* produtos pesquisa __________________________________________________________________ */
.resultado-busca {
  position: absolute;
  top: 90%;
  left: 52%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  max-height: 200px;
  overflow-y: auto;
  background-color: white;
  border-top: 1px solid #ccc;
  z-index: 5;
  display: none;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.resultado-busca-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.resultado-busca-container div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resultado-busca-container a {
  color: var(--tertiary-color);
  font-size: 16px;
}

.resultado-busca-container a span {
  color: rgb(0, 0, 0);
  font-weight: bold;
  background-color: transparent;
}

.item-busca {
  border: 1px solid rgb(182, 181, 181);
  border-radius: 5px;
  padding: 8px 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.item-busca.destaque {
  border-color: #000;
}

/* usuario _________________________________________________________________________ */
.box-usuario {
  top: 60px;
  left: 58%;
  width: 150px;
  height: 130px;
}

.criar-conta {
  margin-top: 15px;
  text-align: center;
  text-decoration: underline;
}

.box-usuario {
  position: absolute;
  top: 60px;
  left: 66%;
  width: 220px;
  background-color: #ffffff;
  border: 1px solid var(--tertiary-color);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 2;
}

.btn-entrar {
  display: block;
  width: 100%;
  padding: 10px 0;
  background-color: var(--tertiary-color);
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
}

.btn-entrar:hover {
  background-color: white;
  border: 1px solid var(--tertiary-color);
  color: var(--tertiary-color);
}

.criar-conta {
  margin-top: 15px;
  text-align: center;
}

.criar-conta a {
  color: var(--tertiary-color);
  font-weight: bold;
}

.criar-conta a:hover {
  text-decoration: underline;
}

#logoutBtn {
  display: block;
  width: 100%;
  padding: 10px 0;
  background-color: var(--tertiary-color);
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
}

#logoutBtn:hover {
  background-color: white;
  border: 1px solid var(--tertiary-color);
  color: var(--tertiary-color);
}

.nome-usuario {
  color: var(--tertiary-color);
  margin-left: 30px;
  cursor: pointer;
}

.nome-usuario:hover {
  text-decoration: underline;
}

/* barra lateral favoritos  _____________________________________________________________ */
.favoritos {
  position: fixed;
  top: 0;
  right: -50%;
  width: 35%;
  height: 100%;
  background-color: var(--secundary-color);
  z-index: 2;
  transition: right 0.5s ease;
  box-shadow: -4px 0 8px rgba(0, 0, 0, 0.9);
  padding: 20px;
  overflow-y: auto;
}

.favoritos.active {
  right: 0;
}

#fundoEscuro2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1;
}

.favoritos .topo {
  position: relative;
  background-color: #ffffff;
  padding: 20px;
  z-index: 3;
}

.favoritos .topo h2 {
  color: var(--tertiary-color);
  text-align: center;
}

#close-favoritos {
  position: absolute;
  top: 25%;
  right: 5%;
  font-size: 40px;
  cursor: pointer;
  color: #000;
}

#close-favoritos:hover {
  color: var(--tertiary-color);
}

.lateral {
  margin-top: 20px;
  display: flex;
  margin-bottom: 110px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.produto-favorito {
  position: relative;
  width: 100%;
  height: 500px;
  margin-bottom: -50px;
}

.produto-favorito img {
  width: 90%;
  height: 450px;
  border-radius: 12px;
  display: block;
  position: relative;
  left: 5%;
  z-index: 4;
}

.produto-favorito .desfavoritar {
  position: absolute;
  bottom: 10px;
  height: 50px;
  top: 80%;
  right: 8%;
  font-size: 40px;
  color: #000000;
  cursor: pointer;
  z-index: 5;
}

.produto-favorito .preco {
  position: absolute;
  left: 8%;
  top: 80%;
  color: rgb(255, 255, 255);
  font-size: 30px;
  z-index: 5;
}

.produto-favorito .nome-produto-favorito {
  position: absolute;
  left: 8%;
  top: 5%;
  color: rgb(255, 255, 255);
  font-size: 35px;
  z-index: 5;
}

.cor-favorito {
  font-size: 25px;
  color: #ffffff;
  margin: 4px 0;
  position: absolute;
  left: 8%;
  top: 72%;
  z-index: 5;
}

.tamanho-favorito {
  font-size: 25px;
  color: #ffffff;
  margin: 4px 0;
  position: absolute;
  left: 8%;
  top: 66%;
  z-index: 5;
}

.quantidade-favorito {
  font-size: 25px;
  color: #ffffff;
  margin: 4px 0;
  position: absolute;
  left: 8%;
  top: 59%;
  z-index: 5;
}

.box-finalizar {
  position: fixed;
  width: 110%;
  height: 13%;
  top: 88%;
  margin-left: -20px;
  background-color: #fff;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.total {
  font-size: 20px;
  font-weight: bold;
  margin-top: 50px;
  margin-left: 20px;
}

#btn-finalizar {
  width: 15%;
  height: 40%;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: absolute;
  left: 16%;
  top: 27%;
  align-content: center;
  text-align: center;
}

#btn-finalizar:hover {
  background-color: #ffffff;
  border: 1px solid #000;
  color: #000;
}

/* home page ___________________________________________________________________________ */
.home-page {
  position: relative;
  margin-top: 90px;
  height: 68vh;
}

.banner {
  background: white;
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
}

.logo-banner {
  display: inline-block;
  animation: slide 75s linear infinite;
}

.logo-banner i {
  font-size: 30px;
  vertical-align: middle;
}

.logo-banner h1 {
  display: inline-block;
  font-size: 20px;
  margin: 0 30px;
  color: black;
  font-weight: bold;
}

.bxs-truck {
  font-size: 20px;
}

.banner:hover .logo-banner {
  animation-play-state: paused;
}

@keyframes slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.cena-3d {
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 15%;
  top: 30%;
}

.foto-3d-interativa {
  width: auto;
  height: auto;
  border: 5px solid #ffffff;
  border-radius: 200px;
  object-fit: cover;
  image-rendering: crisp-edges;
  box-shadow: 0 0 50px #ffffff;
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
  background-color: rgba(255, 255, 255, 0.336);
}

.foto-3d-interativa {
  width: 400px;
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
}

.sobre {
  height: 50vh;
  width: 80%;
  margin-top: 100px;
  margin-left: 160px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50px;
}

.sobre-conteudo {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: rgb(255, 255, 255);
  position: absolute;
  left: 50%;
  top: 40%;
}

.nome-sobre {
  font-size: 40px;
  font-weight: bold;
}

.sobre-contatos ul {
  display: flex;
  gap: 10px;
}

.garantia {
  font-size: 20px;
  max-width: 600px;
}

.data {
  font-size: 20px;
  max-width: 500px;
}

.sobre-contatos {
  font-size: 20px;
}
.sobre-contatos a {
  font-size: 30px;
  color: rgb(255, 255, 255);
  transition: 0.3s;
}

.sobre-contatos a {
  color: red;
}

/* pagina 2 __________________________________________________________________ */
.pagina2 {
  position: relative;
  margin-top: 120px;
  padding: 40px 20px;
  min-height: 100vh;
  background-color: #f9f9f9;
}

.titulo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.barra {
  width: 30px;
  height: 8vh;
  background-color: var(--tertiary-color);
  border-radius: 20px;
}

.texto-titulo {
  font-size: 40px;
  font-weight: bold;
  color: var(--tertiary-color);
  white-space: nowrap;
  text-shadow: 0 0 8px;
}

.produto-container {
  /* display: grid; */
  display: none;
  grid-template-columns: repeat(3, 1fr);
  margin-left: 0px;
}

.titulo {
  position: absolute;
  top: 1%;
}

.produto-wrapper {
  /* display: flex;  _____________________*/
  display: none;
  flex-direction: column;
  width: 100%;
  max-width: 90px;
}

.produto {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 600%;
  height: 500px;
  display: flex;
  overflow: hidden;
  margin-top: 120px;
}

.produto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.nome-produto {
  margin-top: 10px;
  font-size: 25px;
  font-weight: bold;
  color: var(--tertiary-color);
  white-space: nowrap;
  margin-left: 20px;
}

.preco-produto {
  font-weight: bold;
  color: black;
  font-size: 30px;
  white-space: nowrap;
  margin-left: 20px;
}

.saiba-mais {
  position: absolute;
  left: 70%;
  top: 93%;
}

.saiba-mais a {
  color: var(--tertiary-color);
  font-size: 20px;
}

.saiba-mais a:hover {
  color: black;
  transition: 0.2s;
}

.coracao-responsivo {
  position: absolute;
  top: 74%;
  color: white;
  right: 2%;
  z-index: 1;
  border-radius: 50%;
  padding: 5px;
  display: none;
  font-size: 35px;
}

/* hover dentro dos produtos ___________________________________________________________ */

.img-container {
  position: relative;
  width: 100%;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

.hover-box {
  position: absolute;
  bottom: 0;
  left: 10%;
  top: 32%;
  width: 80%;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 30px;
}

.produto:hover .hover-box {
  opacity: 1;
}

.hover-box h1 {
  color: var(--tertiary-color);
  position: absolute;
  left: 10%;
  margin-bottom: 190px;
  font-size: 30px;
}

.cores {
  margin-bottom: 15px;
  align-self: flex-start;
  position: absolute;
  left: 40%;
  top: 32%;
}

.cores label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.opcoes-cor {
  display: flex;
  gap: 10px;
}

.btn-cor {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--tertiary-color);
  cursor: pointer;
}

.btn-cor.selecionado {
  border: 3px solid black;
}

[data-cor="Dourado"] {
  background-color: rgb(243, 187, 32);
}
[data-cor="Branco"] {
  background-color: #e7e6e6;
}
[data-cor="Vermelho Sangue"] {
  background-color: rgb(122, 2, 22);
}
[data-cor="Azul"] {
  background-color: #4a90e2;
}
[data-cor="vermelho"] {
  background-color: rgb(255, 0, 0);
}
[data-cor="Verde-Marinho"] {
  background-color: rgb(39, 248, 203);
}
[data-cor="Rosa-escuro"] {
  background-color: rgb(177, 4, 76);
}
[data-cor="Marrom"] {
  background-color: rgb(124, 56, 0);
}
[data-cor="Rosa"] {
  background-color: #fadadd;
}
[data-cor="Laranja"] {
  background-color: #f57c00;
}
[data-cor="Amarelo"] {
  background-color: rgb(251, 255, 0);
}
[data-cor="Preto-Dourado"] {
  background: linear-gradient(to right, #d4af37 50%, #000000 50%);
}
[data-cor="Preto-Roxo"] {
  background: linear-gradient(to right, #5a2a7a 50%, #000000 50%);
}
[data-cor="Azul-Roxo"] {
  background: linear-gradient(to right, #3b6fc4 50%, #7a2a7a 50%);
}
[data-cor="Azul-Branco"] {
  background: linear-gradient(to right, #3b6fc4 50%, #ffffff 50%);
}
[data-cor="Verde-Roxo"] {
  background: linear-gradient(to right, #b0e6c8 50%, #7c4d9e 50%);
}
[data-cor="Roxo-Rosa"] {
  background: linear-gradient(to right, #e973df 50%, #4b0082 50%);
}
[data-cor="Azul-Vermelho"] {
  background: linear-gradient(to right, #1e90ff 50%, #ff2d55 50%);
}
[data-cor="Preto-Vermelho"] {
  background: linear-gradient(to right, #000000 50%, #ff0130 50%);
}
[data-cor="Rosa-Azul"] {
  background: linear-gradient(to right, #40e0d0 50%, #ff69b4 50%);
}
[data-cor="Rosa-Azul2"] {
  background: linear-gradient(to right, #0b1ec7 50%, #ff69b4 50%);
}
[data-cor="Roxo-Roxo"] {
  background: linear-gradient(to right, #8000a0 50%, #a64ca6 50%);
}
[data-cor="Roxo-Verde"] {
  background: linear-gradient(to right, #800080 50%, #10aaaa 50%);
}
[data-cor="Rosa-AzulClaro"] {
  background: linear-gradient(to right, #f48fb1 50%, #a2d4f2 50%);
}
[data-cor="Rosa-Teal"] {
  background: linear-gradient(to right, #ec407a 50%, #008080 50%);
}
[data-cor="Rosa-Amarelo-Azul"] {
  background: linear-gradient(to right, #f48fb1 33%, #ffeb3b 33%, #64b5f6 34%);
}
[data-cor="Vermelho-branco"] {
  background: linear-gradient(to right, #ff0000 50%, #ffffff 50%);
}
[data-cor="Azul-Dourado"] {
  background: linear-gradient(to right, #d4af37 50%, #0227f8 50%);
}
[data-cor="Preto-Laranja"] {
  background: linear-gradient(to right, #f57c00 50%, #000000 50%);
}
[data-cor="Rosa-Preto"] {
  background: linear-gradient(to right, #000000 50%, #ff69b4 50%);
}
[data-cor="Verde-Branco"] {
  background: linear-gradient(to right, #14e472 50%, #ffffff 50%);
}
[data-cor="Marrom-Branco"] {
  background: linear-gradient(to right, #583200 50%, #ffffff 50%);
}

.quantidade {
  margin-bottom: 15px;
  margin-left: 15px;
  align-self: flex-start;
}

.quantidade label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.controle-quantidade {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-quantidade {
  width: 30px;
  height: 30px;
  font-size: 20px;
  font-weight: bold;
  background-color: #eee;
  border: 1px solid var(--tertiary-color);
  border-radius: 5px;
  cursor: pointer;
}

.valor-quantidade {
  font-size: 16px;
  font-weight: bold;
}

.estrelas {
  font-size: 21px;
  color: gold;
  white-space: nowrap;
  align-self: flex-start;
  margin-bottom: -40px;
}

.coracao {
  display: flex;
  gap: 6px;
}

.coracao li i {
  font-size: 40px;
  color: var(--tertiary-color);
  cursor: pointer;
}

.btn-comprar {
  background-color: var(--tertiary-color);
  color: white;
  border: none;
  padding: 15px 50px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
}

.btn-comprar:hover {
  background-color: var(--main-color);
  color: var(--tertiary-color);
}

.favorito i {
  transition: color 0.3s ease;
}

.opcoes-tamanho {
  display: flex;
  gap: 10px;
  margin-left: 10px;
  margin-bottom: 25px;
  align-self: normal;
}

.btn-tamanho {
  padding: 8px 20px;
  border: none;
  background-color: #eee;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease;
  border: 1px solid var(--tertiary-color);
}

.btn-tamanho.selecionado {
  border: 2px solid #000;
}

.btn-tamanho:hover {
  background-color: var(--tertiary-color);
}

/* quarta pagina ___________________________________________________________________ */

.quarta {
  position: relative;
  margin-top: 70px;
  padding: 40px 20px;
  min-height: 100vh;
  background-color: #f9f9f9;
}

.titulo2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.barra2 {
  width: 30px;
  height: 8vh;
  background-color: var(--tertiary-color);
  border-radius: 20px;
}

/* rodapé __________________________________________________________________________ */

footer {
  height: 60%;
  padding: 200px 20px;
  margin-top: 100px;
}

.footer-container {
  display: flex;
  position: relative;
  height: 50vh;
}

.links-rapido {
  display: flex;
  gap: 20px;
  position: absolute;
  left: 2%;
  margin-top: -150px;
}

.links-rapido a {
  border-radius: 50px;
  padding: 10px 20px;
  background-color: rgb(0, 0, 0);
  border: 1px solid #000000;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.links-rapido a:hover {
  background-color: white;
  color: black;
}

.footer-texto p {
  color: rgb(0, 0, 0);
  max-width: 1200px;
  margin-left: 350px;
  margin-top: 20px;
}

.footer-icone {
  font-size: 30px;
  position: absolute;
  left: 12%;
  width: 1.6%;
}

.footer-icone li {
  margin-top: 20px;
  cursor: pointer;
}

.footer-icone a {
  color: rgb(0, 0, 0);
}

.footer-icone li:hover {
  transform: scale(1.2);
}

.shope img {
  width: 60px;
  margin-left: -15px;
}

.bxl-facebook-circle:hover {
  color: #1877f2;
}

.bxl-instagram-alt:hover {
  color: #e1306c;
}

.bxl-tiktok:hover {
  color: #c71585;
}

.bxl-whatsapp:hover {
  color: #25d366;
}

.bxl-gmail:hover {
  color: #d93025;
}

.footer-texto hr {
  margin-left: 330px;
  margin-top: 10px;
}

.contribuicao {
  color: rgb(255, 255, 255);
  margin-left: 340px;
  max-width: 1200px;
  margin-top: -150px;
}

.contribuicao img {
  width: 7%;
  height: auto;
  margin-top: 10px;
}

.direitos {
  position: absolute;
  left: 27%;
  margin-top: -55px;
}

.direitos i {
  color: #777;
  font-size: 20px;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(to bottom, #237dd6 0%, #001f3f 50%, #1e5fda 80%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #3498db;
  border-radius: 100px;
  border: 1px solid #166a91;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #2980b9;
}

/* responsivo ____________________________________________________________________________ */
@media screen and (max-width: 826px) {
  .menu ul,
  .fundoEscuro2 {
    display: none;
  }

  .mensagem-reserva {
    top: 20%;
    left: 5%;
    font-size: 40px;
    max-width: 350px;
  }

  .hover-box {
    display: none !important;
  }

  .logo img {
    width: 20%;
    left: 35%;
    top: -1%;
  }

  .menu-icones ul {
    left: 68%;
    top: 18px;
  }

  .menu-responsivo {
    display: block;
    position: absolute;
    top: 2%;
    left: 2%;
    z-index: 7;
  }

  .menu-responsivo i {
    color: #ffffff;
    font-size: 25px;
    cursor: pointer;
  }

  /* barra de pesquisa _______________________________________________________________________________ */
  .barra-pesquisa {
    width: 100%;
    height: 16%;
    border-radius: 5px;
    z-index: 8;
  }

  .barra-pesquisa input {
    width: 75%;
    height: 45%;
    margin-left: 10px;
    margin-top: 20px;
  }

  .barra-pesquisa input::placeholder {
    color: var(--tertiary-color);
    padding-left: 0px;
  }

  .barra-pesquisa button {
    margin-left: -28px;
    font-size: 20px;
    transform: translateY(10%);
  }

  .fechar-pesquisa {
    top: 7px;
    left: 90%;
  }

  /* produtos pesquisa __________________________________________________________________ */
  .resultado-busca {
    left: 48%;
    width: 90%;
    z-index: 3;
  }

  /* barra lateral favoritos  _____________________________________________________________ */
  .favoritos {
    right: -110%;
    width: 100%;
    height: 100%;
    z-index: 8;
  }

  #close-favoritos {
    color: var(--tertiary-color);
  }

  .produto-favorito {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: -170px;
    margin-top: 50px;
  }

  .produto-favorito img {
    width: 90%;
    height: 350px;
    border-radius: 12px;
    display: block;
    position: relative;
    left: 5%;
    z-index: 4;
  }

  .produto-favorito .desfavoritar {
    top: 59%;
  }

  .produto-favorito .nome-produto-favorito {
    font-size: 25px;
  }

  .produto-favorito .preco {
    left: 8%;
    top: 60%;
  }

  .favoritos .topo {
    position: fixed;
    width: 100%;
    margin-left: -20px;
    top: 0;
    z-index: 99;
  }

  .cor-favorito {
    left: 8%;
    top: 53%;
    font-size: 23px;
  }

  .tamanho-favorito {
    left: 8%;
    top: 48%;
    font-size: 23px;
  }

  .quantidade-favorito {
    left: 8%;
    top: 42%;
    font-size: 23px;
  }

  .box-finalizar {
    width: 100%;
    top: 88%;
    z-index: 6;
  }

  .total {
    margin-top: 32px;
  }

  #btn-finalizar {
    width: 40%;
    height: 40%;
    left: 55%;
  }

  .box-usuario {
    left: 45%;
    width: 200px;
  }

  .nome-usuario {
    margin-left: 10px;
  }

  /* pagina 2 __________________________________________________________________ */

  .pagina2 {
    min-height: 155vh;
    margin-top: 200px;
  }

  .titulo {
    gap: 10px;
  }

  .barra {
    width: 20px;
    height: 7vh;
  }

  .texto-titulo {
    font-size: 25px;
  }

  .produto-container {
    grid-template-columns: repeat(2, 1fr);
    margin-left: -10px;
    gap: 20px;
  }

  .produto-wrapper {
    width: 100%;
    max-width: none;
  }

  .produto {
    width: 180px;
    height: 180px;
    margin: 70px auto 0 auto;
    padding: 10px;
  }

  .nome-produto {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 20px;
    white-space: normal;
  }

  .quebra-mobile {
    display: block;
  }

  .preco-produto {
    font-size: 25px;
    margin-left: 10px;
  }

  .saiba-mais {
    position: absolute;
    left: 5%;
    top: 97%;
  }

  .saiba-mais a {
    color: var(--tertiary-color);
    font-size: 20px;
  }

  .saiba-mais a:hover {
    color: black;
    transition: 0.2s;
  }

  .coracao-responsivo {
    display: block;
  }

  /* terceiro __________________________________________________________________________ */
  .terceiro {
    margin-top: 100px;
  }

  .market-titulo {
    font-size: 25px;
  }

  .market {
    width: 200px;
    height: 220px;
    margin-top: 100px;
  }

  .market img {
    width: 180%;
    height: 100px;
    margin-bottom: 50px;
    margin-left: -40px;
  }

  .market h2 {
    font-size: 21px;
    top: 71%;
  }

  .market p {
    top: 83%;
    left: 10%;
    font-size: 22px;
  }

  .arrow {
    margin-top: 50px;
    font-size: 20px;
    padding: 10px 12px;
  }

  /* pagina 4 */
  .quarta {
    margin-top: 100px;
    min-height: 160vh;
  }

  /* quinta */
  .quinto {
    margin-top: 100px;
    min-height: 160vh;
  }

  /* sexto*/
  .sexto {
    margin-top: 100px;
    min-height: 160vh;
  }

  /* contato _________________________________________________________________ */
  .contato-container {
    height: 100vh;
    width: 100%;
    margin-left: 0px;
    margin-top: 100px;
    background-color: rgb(0, 0, 0);
  }

  .contato {
    width: 330px;
    height: auto;
    left: 10%;
    top: 20%;
    border: 2px solid rgb(255, 255, 255);
    box-shadow: 0 0 10px rgb(255, 255, 255);
  }

  .video-topo {
    width: 100%;
    max-width: 800px;
    background-color: #000;
    margin-bottom: 340px;
  }

  .video-topo video {
    width: 100%;
    height: 100%;
  }

  .cena-3d {
    position: static;
    margin-bottom: 10px;
    margin-top: -250px;
    margin-left: -20px;
  }

  .foto-3d-interativa {
    width: 200px;
    border-width: 3px;
  }

  .sobre {
    height: 40vh;
    width: 80%;
    margin-top: 250px;
    margin-left: 50px;
    flex-direction: column;
    padding: 20px;
    align-items: center;
    text-align: center;
  }

  .sobre-conteudo {
    left: 16%;
    top: 63%;
  }

  .nome-sobre {
    font-size: 25px;
    margin-left: -50px;
  }

  .sobre-contatos a {
    font-size: 18px;
    color: rgb(255, 0, 0);
    transition: 0.3s;
  }

  .garantia,
  .data,
  .sobre-contatos {
    font-size: 13px;
    max-width: 80%;
    color: rgb(255, 255, 255);
  }

  .sobre-contatos ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* rodapé __________________________________________________________________________ */

  .footer-container {
    position: relative;
    height: 62vh;
    margin-top: 0px;
  }

  .links-rapido {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    left: 0;
    margin-top: -170px;
    width: 100%;
    max-width: 400px;
  }

  .links-rapido a {
    padding: 5px 30px;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 8px;
    text-align: center;
  }

  .footer-texto {
    margin-top: -50px;
  }

  .footer-texto p {
    color: rgb(0, 0, 0);
    max-width: 450px;
    margin-left: 50px;
    font-size: 12px;
  }

  .footer-icone {
    font-size: 25px;
    left: 1%;
    top: 15%;
  }

  .footer-texto hr {
    margin-left: 0px;
    margin-top: 10px;
  }

  .contribuicao {
    position: relative;
    top: 165px;
    margin-left: auto;
    max-width: 1200px;
    text-align: center;
    font-size: 25px;
  }

  .contribuicao img {
    width: 20%;
    margin-left: -280px;
  }

  .direitos {
    position: absolute;
    left: 18%;
    margin-top: -50px;
  }

  .direitos i {
    font-size: 15px;
  }

  .shope img {
    width: 55px;
    height: auto;
    margin-left: -17px;
  }

  .shope1 img {
    width: 58px;
    height: auto;
    margin-left: -20px;
  }

  .mercado img {
    width: 70px;
    margin-left: -25px;
    margin-top: -20px;
  }

  .mercado1 img {
    width: 70px;
    margin-left: -15px;
    margin-top: 10px;
  }

  .bxl-facebook-circle {
    color: #1877f2;
  }

  .bxl-instagram-alt {
    color: #e1306c;
  }

  .bxl-tiktok {
    color: #c71585;
  }

  .bxl-whatsapp {
    color: #25d366;
  }

  .bxl-gmail {
    color: #d93025;
  }
}

/* responsivop pra notbook  */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .logo img {
    top: -3%;
    left: 20%;
  }

  .menu ul {
    left: 31%;
  }

  .menu-icones ul {
    left: 78%;
  }

  .menu-content {
    margin-left: 300px;
  }

  .menu-content a {
    font-size: 20px;
  }

  .links-rapidos {
    top: 28%;
  }

  .menu-overlay {
    height: 40vh;
  }

  /* barra de pesquisa _______________________________________________________________________________ */

  .barra-pesquisa {
    height: 10%;
  }

  .barra-pesquisa input {
    margin-left: 300px;
  }

  .barra-pesquisa button {
    margin-left: -30px;
    font-size: 20px;
    margin-top: 5px;
  }

  .fechar-pesquisa {
    top: -2px;
    right: 21%;
  }

  /* barra lateral favoritos  _____________________________________________________________ */

  .produto-favorito {
    height: 400px;
    margin-bottom: 0px;
  }

  .produto-favorito img {
    height: 370px;
  }

  .produto-favorito .preco {
    top: 82%;
  }

  .produto-favorito .nome-produto-favorito {
    top: 1%;
  }

  .cor-favorito {
    top: 73%;
  }

  .tamanho-favorito {
    top: 63%;
  }

  .quantidade-favorito {
    top: 53%;
  }

  .total {
    margin-top: 30px;
  }

  /* home page ___________________________________________________________________________ */
  .home-page {
    height: 70vh;
  }

  .banner {
    padding: 10px 0;
  }

  .cena-3d {
    top: 40%;
  }

  .foto-3d-interativa {
    width: 300px;
    height: auto;
    border-radius: 80px;
  }

  .sobre {
    height: 60vh;
    margin-left: 100px;
  }

  .sobre-conteudo {
    left: 50%;
    top: 43%;
    max-width: 400px;
  }

  .nome-sobre {
    font-size: 30px;
  }

  /* pagina 2 __________________________________________________________________ */
  .barra {
    width: 20px;
  }

  .texto-titulo {
    font-size: 30px;
  }

  .produto {
    width: 450%;
    height: 350px;
  }

  .nome-produto {
    font-size: 22px;
  }

  .preco-produto {
    font-size: 25px;
  }

  /* hover dentro dos produtos ___________________________________________________________ */

  .img-container img {
    border-radius: 13px;
  }

  .hover-box {
    left: 5%;
    top: 25%;
    width: 90%;
    height: 70%;
  }

  .hover-box h1 {
    left: 28%;
    top: 5%;
    font-size: 20px;
  }

  .btn-tamanho.indisponivel::after {
    width: 15%;
    top: 58%;
    left: 9%;
    transform: rotate(-20deg);
  }

  .cores {
    left: 55%;
    top: 23%;
  }

  .btn-cor {
    width: 30px;
    height: 30px;
  }

  .quantidade {
    margin-bottom: 15px;
    margin-left: 10px;
  }

  .btn-quantidade {
    width: 25px;
    height: 25px;
    font-size: 15px;
  }

  .valor-quantidade {
    font-size: 15px;
  }

  .estrelas {
    display: none;
  }

  .coracao {
    gap: 80px;
  }

  .opcoes-tamanho {
    margin-bottom: 10px;
  }

  .btn-tamanho {
    padding: 5px 20px;
    font-size: 13px;
  }

  /* rodapé __________________________________________________________________________ */

  footer {
    height: 80%;
  }

  .footer-texto p {
    max-width: 820px;
    margin-left: 200px;
  }

  .contribuicao {
    margin-left: 200px;
    max-width: 1200px;
    margin-top: 60px;
  }

  .contribuicao img {
    width: 8%;
  }

  .direitos {
    left: 23%;
  }

  .direitos i {
    font-size: 15px;
  }

  .footer-texto hr {
    margin-left: 200px;
    margin-top: 20px;
  }
}
