* {
  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;
  --quartiary-color: #c0bbbb;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  height: auto;
  background: white;
}

header {
  padding: 28px;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #ffffffda;
  z-index: 99;
}

/* 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: 6%;
  height: auto;
  position: absolute;
  left: 25%;
  top: -50%;
  z-index: 2;
}

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

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

.menu li {
  color: #000;
  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: 68%;
  top: 18px;
  display: flex;
  gap: 23px;
  z-index: 1;
  cursor: pointer;
}

.menu-icones ul {
  color: #000;
  font-size: 18px;
}

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

/* parte do hover do menu _____________________________________________________________________ */

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

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: 80px;
  width: 40%;
  padding-left: 50px;
  height: 80%;
  margin-left: 605px;
}

.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: 59%;
  top: 30%;
  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: 120%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 3;
}

.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: -40px;
  color: rgb(0, 0, 0);
  font-size: 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  transform: translateY(20%);
}

.fechar-pesquisa {
  position: fixed;
  top: -3px;
  right: 18%;
}

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

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

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

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

#iconeMenu {
  font-size: 30px;
  color: rgb(0, 0, 0);
  margin-top: 10px;
  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;
}

/* 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: 2;
  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 _________________________________________________________________________________________ */
main {
  height: 360vh;
  margin-top: -42px;
}

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

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

.texto-titulo {
  font-size: 45px;
  font-weight: bold;
  color: var(--tertiary-color);
  cursor: default;
}

.produto-container {
  width: 75%;
  height: 270vh;
  margin-top: 70px;
}

.produto {
  position: sticky;
  left: 10%;
  top: 6.3%;
  width: 90%;
  height: 800px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 30px;
  background-color: rgba(233, 233, 233, 0.308);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.galeria {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.img-produto {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  margin-top: -30px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.img-produto.ativa {
  opacity: 1;
  z-index: 1;
}

.indicadores {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 2;
  background-color: rgba(228, 228, 228, 0.795);
  padding: 20px 50px;
  border-radius: 12px;
}

.bolinha {
  width: 18px;
  height: 18px;
  background-color: var(--tertiary-color);
  border-radius: 50%;
  transition: all 0.4s ease;
  cursor: pointer;
}

.bolinha.ativa {
  width: 40px;
  height: 8px;
  border-radius: 4px;
  transform: translateY(6px);
}

.detalhes-container {
  width: 20%;
  height: 275vh;
  position: absolute;
  left: 78%;
  top: 45%;
}

.detalhes {
  display: grid;
  gap: 30px;
}

.detalhes h1 {
  color: var(--tertiary-color);
  cursor: default;
  font-size: 35px;
}

.detalhes p {
  color: #000;
  gap: 20px;
  font-size: 20px;
}

/* cor */
.cor {
  margin-top: 300px;
}

.cor h1 {
  color: var(--tertiary-color);
}

.cores-container {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.botao-cor {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* cor produto 1 ____________________________________ */
.var1 {
  background: linear-gradient(to right, #d4af37 50%, #000000 50%);
}

/* cor produto 2 ____________________________________ */
.var2 {
  background-color: #4a90e2;
}

/* cor produto 3 ____________________________________ */

.var3 {
  background: linear-gradient(to right, #3b6fc4 50%, #ffffff 50%);
}
/* cor produto 4 ____________________________________ */

.var4 {
  background: linear-gradient(to right, #3b6fc4 50%, #ffffff 50%);
}

/* cor produto 5 ____________________________________ */

.var5 {
  background: linear-gradient(to right, #3b6fc4 50%, #ffffff 50%);
}
/* cor produto 6 ____________________________________ */

.var6 {
  background-color: rgb(243, 239, 1);
}
/* cor produto 1 ____________________________________ */

.var7 {
  background: yellow;
}

/* cor produto bodys e camisa  ____________________________________ */
.var8 {
  background-color: rgb(202, 202, 202);
}

/* cor produto 1 ____________________________________ */
.var9 {
  background: linear-gradient(to right, #500a6e 50%, #ff6699 50%);
}
.var9-1 {
  background: linear-gradient(to right, #9966cc 50%, #b299e6 50%);
}
.var9-2 {
  background: linear-gradient(to right, #6d0a7a 50%, #993399 50%);
}
.var9-3 {
  background: conic-gradient(#fbff00 0% 50%, rgb(67, 208, 255) 50% 100%);
}

/* cor produto 1 ____________________________________ */
.var10 {
  background: linear-gradient(to right, #8000a0 50%, #a64ca6 50%);
}
/* cor produto 1 ____________________________________ */

.var11 {
  background-color: #fadadd;
}
/* cor produto 1 ____________________________________ */

.var12 {
  background: pink;
}
/* cor produto 1 ____________________________________ */

.var13 {
  background: linear-gradient(to right, #5a2a7a 50%, #000000 50%);
}
/* cor produto 1 ____________________________________ */

.var14 {
  background: linear-gradient(to right, #000000 50%, #ff69b4 50%);
}
/* cor produto 1 ____________________________________ */

.var15 {
  background-color: #4a90e2;
}
/* cor produto 1 ____________________________________ */

.var16 {
  background: linear-gradient(to right, #f48fb1 33%, #ffeb3b 33%, #64b5f6 34%);
}

/* cor produto 1 ____________________________________ */

.var17 {
  background: linear-gradient(to right, #14e472 50%, #ffffff 50%);
}

/* cor produto 1 ____________________________________ */

.var18 {
  background: linear-gradient(to right, #8000a0 50%, #a64ca6 50%);
}
/* cor produto 1 ____________________________________ */

.var19 {
  background: linear-gradient(to right, #583200 50%, #ffffff 50%);
}
/* cor produto 1 ____________________________________ */

.var20 {
  background-color: rgb(39, 248, 203);
}
/* cor produto 1 ____________________________________ */

.var21 {
  background-color: #fadadd;
}
/* cor produto 1 ____________________________________ */

.var22 {
  background: linear-gradient(to right, #000000 50%, #ff002f 50%);
}
/* cor produto 1 ____________________________________ */
.var23 {
  background-color: rgb(243, 239, 1);
}

/* cor produto 1 ____________________________________ */

.var24 {
  background-color: rgb(255, 0, 0);
}
/* cor produto 1 ____________________________________ */

.var25 {
  background: #000;
}
/* cor produto 1 ____________________________________ */

.var26 {
  background: linear-gradient(to right, #40e0d0 50%, #ff69b4 50%);
}
.var26-1 {
  background: linear-gradient(to right, #ec7fa4 50%, #008080 50%);
}
/* cor produto 1 ____________________________________ */

.var27 {
  background: #9de42b;
}
/* cor produto 1 ____________________________________ */

.var28 {
  background: linear-gradient(to right, #ff0000 50%, #ffffff 50%);
}
/* cor produto 1 ____________________________________ */

.var29 {
  background-color: #fadadd;
}
/* cor produto 1 ____________________________________ */

.var30 {
  background: pink;
}
/* cor produto 1 ____________________________________ */

.var31 {
  background: pink;
}
/* cor produto 1 ____________________________________ */

.var32 {
  background: linear-gradient(to right, #f57c00 50%, #fbe8e0 50%);
}
/* cor produto 1 ____________________________________ */

.var33 {
  background-color: rgb(177, 4, 76);
}
.var33-1 {
  background: linear-gradient(to right, #f48fb1 50%, #a2d4f2 50%);
}
.var33-2 {
  background: linear-gradient(to right, #f57c00 50%);
}
/* cor produto 1 ____________________________________ */

.var34 {
  background: linear-gradient(to right, #f57c00 100%);
}
/* cor produto 1 ____________________________________ */

.var35 {
  background: linear-gradient(to right, #8000a0 50%, #a64ca6 50%);
}
.var35-1 {
  background: linear-gradient(to right, #3b6fc4 50%, #7a2a7a 50%);
}
/* cor produto 1 ____________________________________ */

.var36 {
  background-color: #d1509b;
}
/* cor produto 1 ____________________________________ */

.var37 {
  background: linear-gradient(to right, #d4af37 50%, #0227f8 50%);
}
/* cor produto 1 ____________________________________ */

.var38 {
  background-color: #4a90e2;
}
/* cor produto 1 ____________________________________ */

.var39 {
  background: linear-gradient(to right, #f57c00 50%, #000000 50%);
}
/* cor produto 1 ____________________________________ */

.var40 {
  background: linear-gradient(to right, #40e0d0 50%, #ff69b4 50%);
}
/* cor produto 1 ____________________________________ */

.var41 {
  background: rgb(241, 178, 40);
}
/* cor produto 1 ____________________________________ */

.var42 {
  background: green;
}
/* cor produto 1 ____________________________________ */
.var43 {
  background: linear-gradient(to right, #8000a0 50%, #a64ca6 50%);
}

/* cor produto 1 ____________________________________ */

.var44 {
  background: linear-gradient(to right, #8000a0 50%, #a64ca6 50%);
}
/* cor produto 1 ____________________________________ */

.var45 {
  background: linear-gradient(to right, #8000a0 50%, #a64ca6 50%);
}
/* cor produto 1 ____________________________________ */

.var46 {
  background-color: rgb(122, 2, 22);
}

/* cor produto 1 ____________________________________ */

.var47 {
  background-color: #fadadd;
}
/* cor produto 1 ____________________________________ */

.var48 {
  background-color: rgb(124, 56, 0);
}
/* cor produto 1 ____________________________________ */

.var49 {
  background: linear-gradient(to right, #f48fb1 50%, #ffeb3b 50%);
}
/* cor produto 1 ____________________________________ */

.var50 {
  background: linear-gradient(to right, #d4af37 50%, #000000 50%);
}
/* cor produto 1 ____________________________________ */

.var51 {
  background-color: rgb(243, 187, 32);
}
/* cor produto 1 ____________________________________ */

.var52 {
  background: linear-gradient(to right, #b0e6c8 50%, #7c4d9e 50%);
}
/* cor produto 1 ____________________________________ */

.var53 {
  background: linear-gradient(to right, #b0e6c8 50%, #7c4d9e 50%);
}

/* cor produto 1 ____________________________________ */
.var54 {
  background: linear-gradient(to right, #1e90ff 50%, #ff2d55 50%);
}

/* cor produto 1 ____________________________________ */
.var55 {
  background: linear-gradient(to right, #40e0d0 50%, #ff69b4 50%);
}
/* cor produto 1 ____________________________________ */

.var56 {
  background-color: #fadadd;
}

/* cor produto 1 ____________________________________ */
.var57 {
  background: green;
}

/* cor produto 1 ____________________________________ */
.var58 {
  background-color: #4a90e2;
}

/* cor produto 1 ____________________________________ */
.var59 {
  background: linear-gradient(to right, #000000 50%, #ff69b4 50%);
}

/* final produtos ______________________________________________________________________ */
.botao-cor.selecionado {
  border: 3px solid #020202;
}

/* taamnho */
.tamanho {
  text-align: center;
  margin-top: 300px;
}

.botao-tamanho.indisponivel {
  background-color: #f5f5f5;
  color: #ccc;
  border-color: #e0e0e0;
  cursor: not-allowed;

  position: relative;
  overflow: hidden;
}

.botao-tamanho.indisponivel:hover {
  background-color: #f5f5f5;
}

.botao-tamanho.indisponivel::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 1.5px;
  background-color: #ccc;
  transform: translate(-50%, -50%) rotate(45deg);
}

.tamanho h1 {
  color: var(--tertiary-color);
  margin-bottom: 30px;
}

.tamanhos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 0 auto;
}

.botao-tamanho {
  padding: 10px 20px;
  font-size: 16px;
  border: 1px solid var(--tertiary-color);
  border-radius: 12px;
  background-color: transparent;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
}

.botao-tamanho.selecionado {
  background-color: var(--tertiary-color);
  color: rgb(255, 255, 255);
}

/* Estilo para o link "Guia de Tamanhos" */
.link-guia {
  display: block;
  text-align: right;
  margin-top: 20px;
  margin-right: 10px;
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
}

.link-guia:hover {
  color: #0056b3;
}

#fechar-guia-tamanhos {
  margin-left: 700px;
  margin-top: -40px;
  font-size: 50px;
  cursor: pointer;
}

#fechar-guia-tamanhos:hover {
  color: var(--tertiary-color);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.modal-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 90%;
}

.modal-content-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.modal-body {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.modal-body img {
  width: 200px;
  height: 130px;
  margin-bottom: 10px;
}

.modal-body ul {
  text-align: left;
}

.modal-body h2 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.obs-texto {
  color: var(--tertiary-color);
}

.modal-body .img-camiseta {
  width: 260px;
  height: auto;
  margin-left: -50px;
}

/* quantidade  ____________________________________________ */
.quantidade-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0 auto;
  margin-top: 10px;
}

.quantidade h1 {
  color: var(--tertiary-color);
  margin-top: 300px;
}

.botao-quantidade,
#expandir-quantidade {
  padding: 10px;
  font-size: 16px;
  border: 1px solid var(--tertiary-color);
  border-radius: 6px;
  background-color: transparent;
  color: black;
  cursor: pointer;
}

.botao-quantidade.selecionado {
  background-color: var(--tertiary-color);
  color: rgb(255, 255, 255);
}

/* comprar */
.comprar {
  display: flex;
  margin-top: 400px;
  margin-left: -20px;
}

.comprar button {
  padding: 30px 60px;
  border: 1px solid #000;
  background-color: transparent;
  border-radius: 10px;
  color: #000;
  font-size: 30px;
  white-space: nowrap;
  cursor: pointer;
}

.comprar button:hover {
  background-color: #000;
  color: white;
  border: 1px solid var(--tertiary-color);
  box-shadow: 0 0 50px var(--tertiary-color);
}

.comprar h2 {
  position: absolute;
  top: 82%;
  font-size: 30px;
  color: var(--tertiary-color);
}

.botoes-acao {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.botoes-acao .favoritar {
  font-size: 40px;
  margin-left: -10px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--tertiary-color);
}

.botoes-acao .bx-heart:hover {
  background-color: #f0f0f0;
  color: var(--tertiary-color);
}

.botoes-acao .bxs-heart {
  background-color: #ffe0e0;
  color: #e50000;
  border-color: #e50000;
}

.descricao-comprar {
  width: 80%;
  height: 4.3%;
  background-color: var(--quartiary-color);
  position: absolute;
  overflow: hidden;
  top: 89%;
  left: 10%;
  border-radius: 12px;
}

.descricao-comprar p {
  color: white;
  max-width: 400px;
  padding: 10px 10px 10px;
}

/* caixa de confimacao __________________________________________________________________________ */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  background: white;
  padding: 100px;
  border-radius: 10px;
  text-align: center;
  max-width: 700px;
  width: 100%;
  height: 50%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.popup-content p {
  font-size: 25px;
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.botoes {
  display: flex;
  justify-content: space-around;
}

.botoes button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#btn-confirmar {
  background-color: #28a745;
  color: white;
}

#btn-confirmar:hover {
  background-color: #04741c;
}

#btn-cancelar {
  background-color: #dc3545;
  color: white;
}

#btn-cancelar:hover {
  background-color: #3d0006;
}

/* segunda pagina __________________________________________________________________ */
.segunda {
  position: relative;
  height: 75vh;
  background-color: rgba(233, 232, 232, 0.363);
  margin-top: -700px;
}

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

.segundo-titulo {
  font-size: 45px;
  font-weight: bold;
  color: var(--tertiary-color);
  cursor: default;
  margin-top: 70px;
}

.container-opcoes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 80px;
}

.box {
  width: 20%;
  height: 400px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  text-align: center;
  position: relative;
}

.box h1 {
  color: var(--tertiary-color);
  font-size: 35px;
  position: absolute;
  left: 5%;
  top: 5%;
}

.box img {
  width: 30%;
  height: auto;
  position: absolute;
  left: 32%;
  top: 15%;
}

.info-pagamento {
  font-size: 16px;
  color: #333;
  margin-top: 20px;
  position: absolute;
  top: 48%;
  left: 2%;
}

.info-pagamento strong {
  color: #28a745;
}

.info-frete {
  font-size: 16px;
  color: #333;
  margin-top: 20px;
  line-height: 1.6;
  position: absolute;
  top: 49%;
  left: 1%;
}

.info-frete strong {
  color: #ff6600;
}

/* calcular frete __________________________________________________________ */

.box2 {
  width: 30%;
  height: 400px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  text-align: center;
  position: relative;
}

.box2 img {
  width: 10%;
  height: auto;
}

.box-calculo-frete {
  background-color: #f9f9f9;
}

#form-frete {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

#form-frete input {
  padding: 8px;
  border: 1px solid var(--tertiary-color);
  border-radius: 6px;
}

#form-frete button {
  padding: 10px;
  background-color: #000000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#form-frete button:hover {
  background-color: #ffffff;
  color: #000;
  border: 1px solid #000;
}

.resultado-frete {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

/* rodapé __________________________________________________________________________ */

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

.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);
}

.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);
  font-size: 25px;
  margin-left: 340px;
  max-width: 1200px;
  margin-top: -170px;
}

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

.direitos {
  position: absolute;
  left: 25%;
  margin-top: -65px;
}

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

.shope img {
  width: 70px;
  height: auto;
  margin-left: -20px;
}

.mercado img {
  width: 90px;
  height: auto;
  margin-top: -25px;
  margin-left: -29px;
}

::-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: 12px;
  border: 1px solid #166a91;
}

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

@media screen and (max-width: 826px) {
  .menu li,
  .quebra {
    display: none;
  }

  .logo img {
    width: 20%;
    left: 36%;
    top: -20%;
    z-index: 8;
  }

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

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

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

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

  .barra-pesquisa input {
    width: 75%;
    height: 50%;
    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: 5px;
    right: 5%;
  }

  #fundoEscuro {
    top: 75px;
    left: 0;
    z-index: 2;
  }

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

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

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

  #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%;
  }

  .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;
  }

  /* home page _________________________________________________________________________________________ */
  main {
    height: 330vh;
    margin-top: -50px;
  }

  .titulo {
    margin-left: 10px;
  }

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

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

  .produto-container {
    width: 100%;
    height: 270vh;
    margin-top: 30px;
  }

  .produto {
    top: 0%;
    left: 0%;
    width: 100%;
    height: 400px;
    padding: 15px;
    position: absolute;
    z-index: 0;
  }

  .img-produto {
    height: 110%;
  }

  .indicadores {
    padding: 10px 30px;
    bottom: 60px;
  }

  .detalhes-container {
    width: 90%;
    height: auto;
    min-height: 100vh;
    left: 5%;
    top: 90%;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
  }

  .detalhes {
    gap: 20px;
  }

  .cor,
  .tamanho {
    margin-top: 40px;
  }

  .quantidade {
    margin-top: -200px;
  }

  .comprar {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    margin-left: 0;
    width: 100%;
    position: relative;
  }

  .comprar h2 {
    position: static;
    margin-bottom: 15px;
    text-align: left;
  }

  .botoes-acao {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 0;
    width: 100%;
  }

  .comprar button {
    flex: 1;
    padding: 20px;
    font-size: 18px;
    max-width: 80%;
  }

  .botoes-acao .favoritar {
    font-size: 45px;
    color: #000;
    cursor: pointer;
    flex-shrink: 0;
  }

  .descricao-comprar {
    position: static;
    margin-top: 20px;
    width: 100%;
    height: auto;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
  }

  .descricao-comprar p {
    text-align: left;
  }

  .modal-box {
    max-width: 100%;
    padding: 15px;
    height: 68%;
  }

  .modal-content-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .modal-body:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .modal-body:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    margin-left: -50px;
  }

  .modal-body:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .modal-body {
    text-align: left;
  }

  .modal-body img {
    display: block;
    margin: 0 auto 8px 0;
    width: 100px;
    height: auto;
  }

  .modal-body .img-camiseta {
    width: 200px;
    height: auto;
    margin-top: -2px;
  }

  .modal-body ul {
    font-size: 0.8rem;
    line-height: 1.2;
    padding-left: 0;
  }

  .modal-body h2 {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .modal-content-group p {
    font-size: 0.75rem;
    margin-left: 0;
    text-align: center;
  }

  #fechar-guia-tamanhos {
    position: absolute;
    top: 19%;
    right: 8%;
    margin: 0;
    font-size: 45px;
  }

  .obs-texto {
    position: absolute;
    top: 81.5%;
  }

  .obs-texto p {
    font-size: 10px;
  }

  /* segunda pagina __________________________________________________________________ */
  .segunda {
    height: 175vh;
    margin-top: -90vh;
  }

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

  .container-opcoes {
    flex-direction: column;
    align-items: center;
  }

  .box,
  .box2 {
    width: 90%;
    height: auto;
    margin-bottom: 30px;
    position: static;
  }

  .box h1,
  .box img,
  .info-pagamento,
  .info-frete {
    position: static;
    margin: 10px 0;
  }

  .info-pagamento,
  .info-frete {
    text-align: left;
    padding: 0 10px;
  }

  .form-frete {
    width: 100%;
    padding: 0 10px;
  }

  .form-frete input,
  .form-frete button {
    width: 100%;
  }

  /* rodapé __________________________________________________________________________ */
  .footer-container {
    position: relative;
    height: 53vh;
    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;
    background-color: white;
    color: #000;
  }

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

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

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

  .footer-texto p {
    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: 241px;
    margin-left: auto;
    max-width: 900px;
    text-align: center;
    color: white;
  }

  .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;
  }

  /* caixa de confimacao __________________________________________________________________________ */
  .popup-content {
    width: 90%;
    height: 50%;
  }

  .popup-content p {
    margin-bottom: 10px;
    margin-top: -90px;
  }

  .botoes {
    margin-left: -35px;
    gap: 10px;
  }

  .botoes button {
    padding: 7px 20px;
  }
}

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

  .menu ul {
    left: 29%;
  }

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

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

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

  .menu-overlay {
    position: absolute;
    top: 100%;
    width: 104%;
    height: 40vh;
    margin-left: -30px;
    margin-top: -50px;
  }

  .links-rapidos {
    top: 28%;
  }

  /* barra de pesquisa _______________________________________________________________________________ */

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

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

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

  /* 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: 40px;
  }

  /* home page ___________________________________________________________________________ */

  .barra {
    width: 18px;
  }

  .detalhes-container {
    width: 25%;
    height: 330vh;
    left: 72%;
    top: 45%;
  }

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

  .produto-container {
    height: 340vh;
    margin-left: -50px;
  }

  .produto {
    width: 85%;
    height: 750px;
  }

  /* cor */
  .cor {
    margin-top: 200px;
  }

  /* taamnho */
  .tamanho {
    margin-top: 200px;
  }

  .botao-tamanho {
    padding: 8px 15px;
    font-size: 13px;
    border-radius: 8px;
  }

  /* Estilo para o link "Guia de Tamanhos" */
  .link-guia {
    margin-top: 20px;
  }

  .quantidade h1 {
    margin-top: 200px;
  }

  .botao-quantidade,
  #expandir-quantidade {
    padding: 8px 15px;
    font-size: 13px;
    border-radius: 8px;
  }

  /* comprar */
  .comprar {
    display: flex;
    margin-top: 350px;
    margin-left: 0px;
  }

  .comprar h2 {
    position: absolute;
    top: 88%;
    font-size: 25px;
    color: var(--tertiary-color);
  }

  .botoes-acao {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }

  .botoes-acao .favoritar {
    font-size: 35px;
    color: red;
  }

  .comprar button {
    padding: 20px 10px;
    font-size: 30px;
  }

  .descricao-comprar {
    width: 90%;
    height: 5%;
    top: 96%;
    left: 0%;
  }

  /* caixa de confimacao __________________________________________________________________________ */

  .popup-content {
    width: 50%;
    height: 50%;
  }

  /* segunda pagina __________________________________________________________________ */
  .segunda {
    height: 100vh;
    margin-top: 50px;
  }

  .barra2 {
    width: 18px;
    margin-left: -110px;
  }

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

  .box {
    width: 30%;
    height: 400px;
  }

  /* rodapé __________________________________________________________________________ */

  footer {
    height: 80%;
  }

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

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

  .contribuicao img {
    width: 8%;
  }

  .direitos {
    left: 26.5%;
  }

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

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