* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

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

html {
  background-color: rgb(255, 255, 255);
  scroll-behavior: smooth;
  height: auto;
  overflow-x: hidden;
}

body {
  height: 120vh;
}

.bx-user,
.menu-responsivo,
.menu-lateral {
  display: none;
}

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

/* header ____________________________________________________ */
header {
  height: 8vh;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  position: fixed;
  background-color: transparent;
  transition:
    transform 0.4s ease-in-out,
    background-color 0.3s ease-in-out;
}

.header-escondido {
  transform: translateY(-100%);
}

.header-rolagem {
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-rolagem .menu li,
.header-rolagem .menu-icones li,
.header-rolagem .menu-icones i,
.header-rolagem .menu-responsivo,
.header-rolagem #iconeMenu {
  color: #000000;
}

.logo {
  position: absolute;
  left: 10%;
  top: 0;
  transform: translateY(-20%);
  z-index: 99;
  pointer-events: none;
}

.logo img {
  width: 12%;
  height: auto;
}

.menu {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu ul {
  display: flex;
  gap: 35px;
  margin-top: 23px;
}

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

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

.menu-icones {
  position: absolute;
  left: 80%;
  top: 40%;
}

.menu-icones ul,
li {
  display: flex;
  gap: 25px;
  cursor: pointer;
  color: rgb(0, 0, 0);
  font-size: 1.2rem;
}

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

/* parte do hover do menu _____________________________________________________________________ */

.menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 38vh;
  background-color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  display: none;
  padding: 100px 20px 40px 20px;
  z-index: 5;
}

.menu ul,
.menu-icones ul {
  position: relative;
  z-index: 20;
}

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

.menu-content {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 800px;
  margin-top: 10px;
}

.menu-titulo {
  color: var(--tertiary-color);
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
  margin-bottom: 20px;
}

.menu-content a {
  display: block;
  color: black;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  margin-top: 15px;
  width: max-content;
  transition: padding 0.3s;
}

.menu-content a:hover {
  color: var(--tertiary-color);
  padding-left: 5px;
}

.links-rapidos {
  position: absolute;
  left: 55%;
  top: 0;
  display: block;
  border-left: 1px solid #eee;
  padding-left: 40px;
}

.links-rapidos h2 {
  color: var(--tertiary-color);
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
  margin-bottom: 20px;
}

.links-rapidos a {
  display: block;
  color: black;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  margin-top: 15px;
  width: max-content;
}

/* barra de pesquisa _______________________________________________________________________________ */
.barra-pesquisa {
  position: absolute;
  top: 0;
  right: 0;
  background-color: white;
  width: 100%;
  height: 100%;
  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-top: 10px;
  border: 1px solid #000;
  border-radius: 12px;
  padding-left: 20px;
  font-size: 1.2rem;
  display: flex;
  justify-self: center;
}

.barra-pesquisa input::placeholder {
  color: var(--tertiary-color);
}

.barra-pesquisa button {
  background-color: transparent;
  color: rgb(0, 0, 0);
  font-size: 2rem;
  border: none;
  cursor: pointer;
  transform: translateY(20%);
  position: absolute;
  left: 72%;
  top: 5%;
}

.fechar-pesquisa i {
  color: var(--tertiary-color);
  font-size: 2.5rem;
  margin-top: 5px;
}

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

#fundoEscuro {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100vw;
  height: 110vh;
  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);
}

.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: -100%;
  width: 35%;
  height: 108dvh;
  background-color: var(--secundary-color);
  z-index: 2000;
  transition: right 0.5s ease;
  box-shadow: -4px 0 8px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.favoritos.active {
  right: 0;
}

#fundoEscuro2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 120vh;
  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 {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.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: absolute;
  width: 100%;
  height: 13vh;
  padding: 20px;
  bottom: 70px;
  background-color: #fff;
  display: flex;

  padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

.total {
  font-size: 20px;
  font-weight: bold;
  align-self: flex-start;
  margin-top: 30px;
}

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

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

/* home page ___________________________________________________________________________ */
.pagina-catalogo {
  position: relative;
  padding: 40px 100px;
  min-height: 100vh;
  margin-top: 80px;
}

.catalogo-titulo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px;
}

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

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

.grid-produtos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 35px;
  width: 100%;
}

.produto-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.produto {
  width: 100%;
  height: 410px;
  display: flex;
  position: relative;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.nome-produto {
  margin-top: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--tertiary-color);
  white-space: normal;
  line-height: 1.2;
}

.preco-produto {
  font-weight: bold;
  color: #000000de;
  font-size: 1.7rem;
  margin-top: 5px;
}

.parcela {
  font-size: 1.2rem;
  font-weight: bold;
  color: #555;
}

.paginacao-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 80px;
  padding-bottom: 40px;
}

.seta-paginacao,
.numero-pag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #ccc;
  color: #000;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.seta-paginacao i {
  font-size: 2rem;
}

.numero-pag.ativo,
.numero-pag:hover,
.seta-paginacao:hover {
  background-color: var(--tertiary-color);
  border-color: var(--tertiary-color);
  color: white;
}

/* 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: 0;
  width: 100%;
  height: 55%;
  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: 20px 20px 0px 0px;
}

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

.hover-box h1 {
  color: var(--tertiary-color);
  align-self: flex-start;
  margin-bottom: 40px;
  font-size: 1.6rem;
}

.cores {
  position: absolute;
  left: 55%;
  top: 15%;
}

.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(202, 182, 0);
}
[data-cor="Marrom"] {
  background-color: #331402;
}
[data-cor="Roxo"] {
  background-color: rgb(71, 38, 90);
}
[data-cor="vermelho"] {
  background-color: rgb(122, 2, 22);
}
[data-cor="azul"] {
  background-color: rgb(30, 154, 236);
}
[data-cor="Laranja"] {
  background-color: #e26b0a;
}
[data-cor="Verde-marinho"] {
  background-color: rgb(39, 248, 203);
}
[data-cor="Branco"] {
  background: linear-gradient(to right, #14e472 50%, #ffffff 50%);
}
[data-cor="Rosa"] {
  background: pink;
}

.quantidade {
  margin-bottom: -34px;
  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: 1rem;
  font-weight: bold;
  background-color: #eee;
  border: 1px solid var(--tertiary-color);
  border-radius: 5px;
  cursor: pointer;
}

.valor-quantidade {
  font-size: 1.3rem;
  font-weight: bold;
}

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

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

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

.btn-comprar {
  background-color: var(--tertiary-color);
  color: white;
  border: none;
  padding: 15px;
  width: 170px;
  max-width: 160px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 900;
}

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

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

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

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

.btn-tamanho.indisponivel::after {
  content: "";
  position: absolute;
  width: 10%;
  height: 1.5px;
  background-color: #ccc;
  top: 60%;
  left: 32%;
  transform: rotate(-30deg);
}

/* rodapé __________________________________________________________________________ */

footer {
  width: 100%;
  background: white;
  padding: 40px 0;
  margin-bottom: 70px;
}

.container-footer {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.lista-telefones li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lista-telefones h2 {
  font-size: 1rem;
  font-weight: bold;
  background: #ff0033;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2px;
}

.lista-telefones p {
  font-size: 1rem;
  color: var(--secundary-color);
}

.lista-telefones h1 {
  font-size: 1rem;
  color: var(--secundary-color);
}

.social-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.whats-label {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--secundary-color);
  font-weight: 600;
}

.lista-social {
  display: flex;
  gap: 15px;
}

.lista-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #000;
  font-size: 1.5rem;
  transition: 0.3s;
}

.lista-social li a:hover {
  background-color: #cc092f;
  color: white;
}

.logo-footer img {
  width: 180px;
  height: auto;
}

.linha-separadora {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 30px 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.links-institucionais {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

.links-institucionais li {
  display: flex;
  align-items: center;
}

.links-institucionais a {
  font-size: 0.9rem;
  color: var(--secundary-color);
  font-weight: 600;
  padding: 0 25px;
}

.links-institucionais a:hover {
  color: #cc092f;
}

.links-institucionais li::after {
  content: "";
  display: block;
  width: 1px;
  height: 2.5vh;
  background-color: #ccc;
}

.links-institucionais li:first-child a {
  padding-left: 0;
}

.links-institucionais li:last-child::after {
  display: none;
}

.direitos-autorais {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.direitos-autorais p {
  font-size: 0.85rem;
  color: var(--secundary-color);
}

.direitos-autorais a {
  color: var(--tertiary-color);
  font-weight: bold;
  transition: all 0.3s ease;
}

.direitos-autorais a:hover {
  color: #000;
  text-decoration: underline;
}

/* responsivo  not____________________________________________________________________________ */

@media (max-width: 1600px) {
  .hover-box {
    display: none;
  }

  .menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 47vh;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    display: none;
    padding: 100px 20px 40px 20px;
    z-index: 5;
  }
}

/* responsivo cel ____________________________________________________________________________ */
@media (max-width: 850px) {
  .menu,
  .hover-box,
  .links-institucionais li::after {
    display: none;
  }

  body {
    overflow-x: hidden;
    height: auto;
  }

  body.travado {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
  }

  .barra-pesquisa {
    height: 100%;
    z-index: 101;
  }

  .barra-pesquisa input {
    width: 80%;
  }

  .barra-pesquisa input:focus {
    outline: none;
    border: 1px solid #000000;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }

  .barra-pesquisa button {
    left: 78%;
  }

  .fechar-pesquisa i {
    font-size: 2.5rem;
    transform: translateY(-20%);
  }

  header {
    height: 6vh;
  }

  .logo {
    position: absolute;
    left: 15%;
    top: 60%;
    transform: translateY(-50%);
    z-index: 99;
  }

  .logo img {
    width: 25%;
  }

  .menu-icones {
    position: absolute !important;
    left: 65%;
    top: 55%;
    transform: translateY(-50%);
  }

  .pagina-catalogo {
    padding: 30px 20px;
    margin-top: 100px;
  }

  .catalogo-titulo .texto-titulo {
    font-size: 1.7rem;
    max-width: 300px;
    white-space: normal;
  }

  .grid-produtos {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
  }

  .produto {
    height: 400px;
  }

  .nome-produto {
    font-size: 1.5rem;
    text-align: center;
  }

  .preco-produto {
    font-size: 1.6rem;
    text-align: center;
  }

  .parcela {
    text-align: center;
  }

  .paginacao-container {
    gap: 10px;
  }

  .seta-paginacao,
  .numero-pag {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  footer {
    padding: 30px 0;
    margin-bottom: 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .lista-telefones li {
    align-items: center;
  }

  .social-area {
    width: 100%;
  }

  .logo-footer {
    order: -1;
  }

  .links-institucionais {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .links-institucionais li {
    width: 100%;
    justify-content: center;
  }

  .links-institucionais a {
    padding: 5px 0;
    text-align: center;
  }

  /* menu responsivo ____________________________________ */

  .menu-responsivo {
    display: block !important;
    position: absolute;
    top: 25%;
    left: 5%;
    z-index: 99;
    cursor: pointer;
  }

  #iconeMenu {
    font-size: 35px;
    color: #000000;
    transition:
      transform 0.3s ease,
      color 0.3s ease;
  }

  #iconeMenu.menu-aberto {
    color: #000000;
  }

  .menu-lateral {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 100dvh;
    background-color: #ffffff;
    z-index: 98;
    transition: left 0.5s ease;
    padding: 80px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    touch-action: none;
    overscroll-behavior: none;
    overflow: hidden;
  }

  body.travado {
    overflow: hidden !important;
  }

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

  .menu-container {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 120px;
  }

  .menu-lateral h2 {
    font-size: 27px;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
  }

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

  .linha-cima,
  .linha-baixo {
    width: 100%;
    border: none;
    border-top: 1px solid #2c2c2c;
  }

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

  .links-expandidos.ativo {
    max-height: 500px;
    opacity: 1;
    padding: 10px 0 20px 10px;
  }

  .seta-toggle {
    font-size: 24px;
    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;
    width: 100%;
    background-color: var(--tertiary-color);
    padding: 20px 0;
    border-radius: 20px 20px 0 0;
    z-index: 10;
  }

  .icone-responsivo ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .icone-responsivo li a {
    font-size: 1.6rem;
    color: #fff;
  }

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

  .favoritos {
    width: 100%;
    right: -100%;
  }

  .produto-favorito img {
    height: 300px;
    object-fit: cover;
  }
}
/* responsivop pra notbook  */
