* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: "Roboto", sans-serif;
}

:root {
  --gray: #ededed;
}

html, body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  cursor: default;
  transition: 0.3s ease-in-out;
  background-color: black;
  overflow-x: hidden; /* Evita rolagem horizontal */
}

/* Corpo da página */
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* Permite rolagem horizontal se necessário */
  overflow-y: scroll;
}

#page-body {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
#page-body.loaded {
  opacity: 1;
}

/*fundo ( a cor origial é #5a0d0d*/
#secfundo{
  height: 100%;
}
#fundo{
  background-image: linear-gradient(to left, #5a0d0d, black);
  background-size: 500% 100%;
  width: 100%;
  height: 5050px;
  margin-top: -6000px;
  animation: degrade-animado 4s infinite alternate;
}

@keyframes degrade-animado{
  0%{
    background-position-x: 0%;
  }
  100%{
    background-position-x: 100%;
  }
}

header {
  width: 100%;
  height: 150px;
  margin: 0 auto;
  margin-top: -15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 100; /* Mantém um nível alto, mas não interfere na barra */
}

#header {
  background-color: rgb(114, 0, 0);
  width: calc(100%); /* Reduz a largura para não invadir a barra de rolagem */
  height: 120px;
  border: white solid 5px;
  border-left: none;
  border-right: none;
  box-shadow: black 0px 0px 0px;
  position: fixed;
  z-index: 10; /* Reduz o nível para não sobrepor a barra de rolagem */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}


.content {
  max-width: 1000px;
  min-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

#logoi{
  display: none;
}
#btn-mobile{
  display: none;
}

nav {
  width: 100%;
  height: 90px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; /* Garante o espaçamento adequado */
  margin-left: 0vw; /* Remover margem negativa */
  user-select: none;
}

.brand {
  width: 100px;
  height: 80px;
  user-select: none;
  margin-right: 0;
  margin-top: 20px;
  cursor: pointer;
}

#logo{
  width: 100%;
  height: 200px;
  margin-left: -5vw;
}
.imgl{
  mix-blend-mode: normal;
  width: 100%;
  height: 100%;
  transition: 1s;
}

.imgl:hover{
  filter: drop-shadow(0px 0px 10px white);
}
nav ul {
  display: flex;
  flex-direction: row;
  margin-left: -20vw;
}

nav ul li {
  width: 200px;
  height: 50px;
  line-height: 10px;
  list-style: none;
  padding: 20px;
  margin-top: 35px;
  margin-left: 0px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  user-select: none;
  font-size: 25px;
  margin-left: -0vw;
  padding-left: 20px;
  margin-top: 0px;
}
nav ul li a:hover{
  color: #ffc800;
  transition: all 0.7s ease-in-out;
}

.servicomenu{
  margin-left: -80px;
}
#log {
  width: 60px;
  height: 60px;
  margin-left:70vw;
  position: absolute;
  margin-top: 32px;
  border-radius: 100%;
}
.login {
  width: 72px;
  height: 72px;
  margin-top: -5px;
  margin-left: -2vw; /* Ajuste a margem para que o botão fique mais visível */
  filter: invert(100%);
  border-radius: 100%;
}

.login:hover{
  filter: drop-shadow(0px 0px 5px black) invert(100%);

}
#log-menu{
  display: none;
}

#carho{
  width: 60px;
  height: 60px;
  margin-top: 6px;
  margin-left: -0px;
  user-select: none;
  filter: invert(100%);
}
.crinho{
  margin-top: 25px;
  width: 100%;
  height: 100%;
  font-size: 5px;
  user-select: none;
}
.carrinho-txt{
  display: none;
}
/*Pesquisa no menu inicio 
]
]
*/
.pesquisa-mobile{
  display: none;
}
.search-box{
  height: 40px;
  position: absolute;
  background: white;
  border-radius: 50px;
  padding: 10px;
  margin-left: 90vh;
  margin-top: 40px;
  z-index: 100; /* Garante que fique acima de outros elementos */
}

.search-txt{
  border: none;
  background: none;
  outline: none;
  float:right;
  padding: 0;
  font-size: 16px;
  transition: 0.4s;
  line-height: 40px;
  width: 0;
  margin-top: -10px;
  color: black;
}

.icone-buscar{
width: 20px;
margin-top: -10px;
}
.search-box:hover>.search-txt{
  width: 140px;
  padding: 0.6px;
}

.search-button img{
  display: none;
}


/*
[
[
Pesquisa no menu fim*/

/*fIM DO CAABEÇALHO*/
.container-slider {
  display: flex;
  width: 100%;
  min-height: 50vh;
  align-items: center;
  justify-content: center;
  gap: 12rem;
  margin-top: 50px;
  }

.container-images {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 980px;
  height: 100px;
}

.slider {
  opacity: 0;
  transition: opacity 1s;
  position: absolute;
  width: 100%;
  border-radius: 10px;
}

.on {
  opacity: 1;
}

#prev-button, #next-button {
  width: 60px;
  height: 60px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  margin: -150px;
  background-color: white;
  border-radius: 100%;
}

#prev-button img, #next-button img {
  width: 30px;
  height: 30px;
}
.container-images img{
  width: 100%;
  height: 400px;
  box-shadow: 0px 0px 20px white;
}

.balls-slide {
  text-align: center;
  margin-top: 20px;
}

.ball {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.ball.active {
  background-color: #ff0000; /* Cor da bolinha ativa */
}


/*fim slide*/

/* Product Catalog */

#prev-button-m, #next-button-m {
  width: 60px;
  height: 60px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  margin: -125px;
  background-color: white;
  border-radius: 100%;
}

#prev-button-m img, #next-button-m img {
  width: 30px;
  height: 30px;
}

#prev-button-m{
  transform: rotate(180deg);
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 100%;
  margin-top: 8vh;
  margin-left: -100px;
}

#next-button-m{
  width: 60px;
  height: 60px;
  margin-left: 1020px;
  background-color: white;
  border-radius: 100%;
}



#marcas{
  width: 100%;
  height: 200px;
text-align: center;
overflow: auto;
overflow-y: hidden; 
border-radius: 10px;
text-align: center;
box-shadow: white 5px 5px 25px 0px;
padding: 50px;
margin: 0px;
display: inline-block;
}
.imgmarca{
width: 100px;
height: 100px;
margin-top: -15px;
margin-left: -4vw;
border-radius: 100%;
background-color: white;
overflow: auto; 
display: inline-block;
box-shadow: white 5px 5px 25px 0px;
transition:  0.3s ease-in-out;
user-select: none;
}
.tmarcas{
  margin-top: 5vh;
  color: white;
  font-size: 40px;
}
  .logo1{
    width: 100px;
    height: 100px;
    margin-left: 30px;
    border-radius: 100%;
    transition:  1.3s ease-in-out;
  }
  .logo1 :hover{
    width: 120px;
    height: 120px;
  }
  .logo2{
    width: 100px;
    height: 100px;
    margin-left: 178px;
    margin-top: -98px;
    border-radius: 100%;
    
  }
  .logo2 :hover{
    width: 120px;
    height: 120px;
  }
  .logo3{
    border-radius: 100%;
    margin-left: 325px;
    margin-top: -98px;
    width: 100px;
    height: 100px;
    border-radius: 100%;

  }
  .logo3 :hover{
    width: 120px;
    height: 120px;
  }
  .logo4{
    margin-left: 465px;
    margin-top: -98px;
    width: 110px;
    height: 110px;
    border-radius: 100%;
  }
  .logo4 :hover{
    width: 120px;
    height: 120px;
  }
  .logo5{
    margin-left: 610px;
    margin-top: -110px;
    width: 120px;
    height: 120px;
  }
  .logo5 :hover{
    width: 120px;
    height: 120px;
  }
  .logo6{
    margin-left: 760px;
    margin-top: -118px;
    width: 120px;
    height: 120px;
  }
  .logo6 :hover{
    width: 120px;
    height: 120px;
  }
.logo7{
  margin-left: 900px;
  margin-top: -118px;
    width: 125px;
    height: 130px;
}

.logo7 :hover{
  width: 120px;
    height: 120px;
}
.logo8{
  margin-left: 1055px;
  margin-top: -128px;
    width: 125px;
    height: 130px;
    size: 20px;
}
.logo8 :hover{
  width: 120px;
    height: 120px;
}
.logo9{
  margin-left: 1215px;
  margin-top: -128px;
    width: 125px;
    height: 130px;
}
.logo9 :hover{
  width: 120px;
    height: 120px;
}
/*aqui volta para o inicio*/
.logo10{
    margin-left: 1370px;
    margin-top: -128px;
    width: 125px;
      height: 130px;
  }
  .logo10 :hover{
    width: 120px;
    height: 120px;
  }
  .logo11{
    margin-left: 1525px;
    margin-top: -128px;
    width: 125px;
      height: 130px;
  }
  .logo11 :hover{
    width: 120px;
    height: 120px;
  }
  .logo12{
    margin-left: -435px;
    margin-top: -128px;
    width: 125px;
      height: 130px;
  }
.logo12 :hover{
  width: 120px;
    height: 120px;
}

.tmarcas{
  padding-top: 20px;
}

.cattext{
  margin-top: 10vh;
  font-size: 40px;
  color: white;
}
section .catalog {
  width: 100vw;
  padding: 100px;
}
.alta{
  width: 40px;
  margin-top: -1vh;
}

section .filter-card {
  width: 980px;
  height: 150px;
  background: #9c1f1f;
  border-radius: 8px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: black 5px 5px 25px 0px;
  margin-top: 55px;
  transition:  1.4s ease-in-out;
}



.search-input {
  width: 700px;
  height: 50px;
  border: none;
  border-radius: 4px 0px 0px 4px;
  text-indent: 10px;
  padding-top: 20px;
  transition:  0.3s ease-in-out;
}

.search-button {
  width: 150px;
  height: 50px;
  border-radius: 0px 4px 4px 0px;
  border: none;
  margin-top: -0px;
  text-align: center;
  align-content: center;
  background: rgb(114, 0, 0);
  color: white;
  cursor: pointer;
  font-size: 1.1em;
  transition: 0.2s ease;
  user-select: none;
}

.search-button:hover {
  background: white;
  color: rgb(114, 0, 0);
  box-shadow: 0px 0px 5px 0px;
}

.title-wrapper-catalog {
  margin-top: 200px;
  padding-bottom: 20px;
}

section .card-wrapper {
  max-width: 1000px;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  grid-gap: 30px;
  padding-top: 0px;
}
.card-item .alta-card{
  width: 60px;
  height: 50px;
  margin-top: -4vh;
  margin-left: 32vh;
  padding: 5px 10px 10px;
  background-color: white;
  border-radius: 100%;
  border: solid #5a0d0d 2px;
  box-shadow: none;
}

section .card-item {
  height: 400px;
  background: var(--gray);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  box-shadow: black 5px 5px 25px 0px;
  margin-top: 30px;
  transition:  0.3s ease-in-out;
}

.card-content {
  height: 40%;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  transition:  0.3s ease-in-out;
}
.card-content h3{
  margin-left: 20px;
  margin-right: 20px;
  margin-top:-30px;
  text-align: justify;
  font-size: 20px;
}
.card-content p{
  text-align: justify;
  margin: 10px;
}

.card-item img {
  width: 85%;
  height: 150px;
  box-shadow: black 0px 0px 20px 5px;
  border-radius: 10px;
  margin-top: -3vh;
}

.card-item h4 {
  width: 90%;
}

.card-item p {
  width: 90%;
  height: 40px;
  font-size: 14px;
  margin-top: -10px;
  font-style: italic;
  color: #00000070;
}

.card-item button {
  width: 90%;
  height: 30%;
  padding: 5px 0px;
  margin-top: 10px;
  border: none;
  background: #9c1f1f;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: 0.3s ease;
  margin-bottom: 10px 0px;
  margin-top: 20px;
  transition:  1.0s ease-in-out;
}

.card-item button:hover {
  background: #dedede;
  color: #9c1f1f;
}
.bvmais{
  background-color: #9c1f1f;
  color: white;
  border-radius: 10px;
  font-size: 30px;
  text-align: center;
  width: 20%;
  height: 50px;
  margin-left: 392px;
  margin-top: 50px;
  transition:  2.10s ease-in-out;
}
.btmais{
  background-color: #9c1f1f;
  color: white;
  font-size: 30px;
  border: none;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  user-select: none;
  border: solid white 2px;
  box-shadow: black  0px 0px 5px 1px;
}
.btmais:hover{
  box-shadow: white  0px 0px 10px 2px;
  transition:  0.20s ease-in;

}
.conheca{
  text-align: center;
  margin-top: 50px;
  height: 200px;
  background-color: white;
  margin-left: -900px;
  margin-right: -900px;
  box-shadow: rgb(156, 48, 48) 10px 5px 30px 10px;
  transition:  1.10s ease-in-out;
}
.vconheca{
  height: 170px;
  margin-left: -900px;
  margin-right: -900px;
  margin-top: 15px;
  background-color:  rgb(114, 0, 0);
  transition:  3.18s ease-in-out;
}
h2.tconheca{
  width: 30%;
  height: 40px;
  color: white;
  margin-top: -110px;
  margin-left: 970px;
  font-size: 50px;
  font-style: normal;
}
/* About */
#fundosobre{
width: 100%;
height: 0px;
}
#fundosobre img{
  width: 100%;
  height: 78vh;
  filter: opacity(40%);
}
.about {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  margin-top: 0%;
  background-color: white;
}
.title-wrapper-about{
  height: 10vh;
  background-color: transparent;
}

.about-content {
  max-width: 1000px;
  min-width: 300px;
  height: 600px;
  margin: 0 auto;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: white;
  margin-top: 0vh;
  box-shadow: black 5px 5px 25px 0px;
  filter: opacity(100%);
}
.sobre {
  font-size: 40px;
  text-align: center;
  margin-top:0vh;
  color: black;
  filter: saturate(1);
  z-index: 999;
  position: absolute;
  transition:  0.8s ease-in-out;
}

.left {
  width: 25%;
  min-width: 300px;
  height: 100%;
  background: rgb(114, 0, 0);
  border-radius: 8px;
  transition:  1.10s ease-in-out;
  opacity: 100%;
}

.imgfsobre{
  width: 200px;
  height: 180px;
  margin-top: 160px;
  margin-left: 40px;
  filter: drop-shadow(0px 0px 10px white);
}

.right {
  width: 65%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 10%;
  transition:  1.3s ease-in-out;
  background-color: white;
}

.right h3 {
  text-align: right;
  width: 90%;
  margin-bottom: 20px;
}

.right p {
  max-width: 90%;
  font-size: 1em;
  letter-spacing: 2px;
  text-align: justify;
  color: rgba(0, 0, 0, 0.4);
}

/* Features */
#feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Ajusta para que o conteúdo se alinhe ao topo */
  padding: 0;
  margin-top: 0;
  background: var(--gray);
  min-height: 60vh; /* Define a altura mínima como 100% da viewport */
  gap: 30px; /* Adiciona espaçamento entre os itens */
}
.title-wrapper-feature {
  margin-top: 10vh;
  padding: 40px 0px;
}


/* Ajustes para o bloco do feature-card */
.feature-card-block {
  max-width: 1000px;
  min-width: 300px;
  height: auto; /* Ajusta a altura para caber no conteúdo */
  background: white;
  margin: 0 auto;
  margin-top: 2vh;
  margin-bottom: 50px; /* Margem inferior para separar do footer */
  border-radius: 8px;
  padding: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); /* Flexível para se ajustar ao tamanho da tela */
  grid-gap: 30px;
  box-shadow: black 5px 5px 25px 0px;
  transition: 1.3s ease-in-out;
}

/* Ajusta o conteúdo para o restante da tela */
#feature .content {
  height: auto; /* Permite que o conteúdo se ajuste de forma dinâmica */
}

.feature-card-item {
  max-width: 420px;
  height: auto;
  padding: 30px;
  display: flex;
  flex-direction: row; /* Coloca os elementos em linha (lado a lado) */
  align-items: center;
  justify-content: flex-start; /* Alinha os itens ao início */
  border: solid 2px #cbcbcb;
  border-radius: 10px;
  transition: 1.9s;
  gap: 20px; /* Espaçamento entre imagem e texto */
}

.feature-text-content {
  max-width: 60%;
  margin: 5px;
  text-align: justify;
}

.feature-card-item img {
  width: 64px;
  height: 64px;
  flex-shrink: 0; /* Impede que a imagem seja reduzida */
}


footer .main {
  width: 100%;
  height: auto;
  background: rgb(114, 0, 0);
}



/* Links e estrutura do footer */
.footer-links {
  max-width: 60vw;
  width: 100%; /* Garante responsividade */
  display: flex;
  flex-direction: row;
  margin-left: 27vw;
  justify-content: space-between;
  margin-top: 20px;
}

.footer-company,
.footer-contact,
.footer-social {
  color: white;
  height: 100%;
  min-height: 100px;
}

.footer-links h4 {
  margin-bottom: 10px;
  margin-top: 20px;
}

.footer-social .social-icons a {
  color: white;
  text-decoration: none;
  font-style: normal;
}

.footer-links {
  margin-bottom: 8px;
}

.face {
  margin-left: 5px;
  cursor: pointer;
}

/* Estilização para os ícones sociais */
.footer-company h6 {
  color: white;
}

.footer-company a {
  text-decoration: none;
}

.footer-company h6:hover {
  cursor: pointer;
  text-decoration: underline;
}

.footer-contact h4 {
  font-size: 20px;
}

.main .footer-social img {
  width: 32px;
  height: 32px;
  margin-left: 0;
  margin-top: 1vh;
}

.footer-contact .imgctt {
  width: 30px;
  margin-top: 3px;
}

.footer-contact .imgmail {
  width: 30px;
  margin-top: 5px;
}

.footer-contact .imglocal {
  width: 40px;
  margin-left: -4px;
  filter: invert(100%);
}

.footer-contact h6 {
  margin-top: -3vh;
  margin-left: 3vw;
  color: white;
}

.linknumero {
  text-decoration: none;
  margin-left: 30vw;
}

.linklocal {
  text-decoration: none;
}

/* Último bloco do footer */
.last-last {
  width: 100vw; /* Usa 100vw para cobrir toda a tela */
  height: 50px;
  background-color: #3e3d3d;
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

footer .last {
  width: 100vw; /* Garante que ocupa toda a largura */
  height: 60px;
  background: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

/*TELEFONE É AQUI!!!!!!!!!!!!*/


/* Responsive adjustments */

@media (max-width: 780px) {
  html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    cursor: default;
    transition: 0.3s ease-in-out;
    background-color: white;
    user-select: none;
  }

  body {
    width: 100%;
    overflow-x: hidden; /* Oculta a barra de rolagem horizontal */
    margin: 0;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: "Roboto", sans-serif;
  }
  ::-webkit-scrollbar{
    width: 20px;
  }
  ::-webkit-scrollbar-track {
    background: #000000; /* Cor de fundo do trilho */
    border: solid rgb(128, 26, 26) 2px;
  }
  
  ::-webkit-scrollbar-thumb{
    background-color: rgb(0, 0, 0);
    border: solid rgb(255, 255, 255) 8px;
    border-top: solid white 1px;
    border-left: solid white 1px;
    border-right: solid white 1px;
    border-radius: 0px 0px 5px 5px;
    transition: 1.2s;
  }
  ::-webkit-scrollbar-thumb:hover{
    background-color: white;
    border-top: solid #5a0d0d 5px;
    border-left: solid #5a0d0d 5px;
    border-right: solid #5a0d0d 5px;
    border-radius: 0px 0px 5px 5px;
    transition: 1.8s;
  }
  
  :root {
    --gray: #ededed;
  }
  
  html, body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    cursor: default;
    transition: 0.3s ease-in-out;
    background-color: black;
    overflow-x: hidden; /* Evita rolagem horizontal */
  }
  
  /* Corpo da página */
  body {
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Permite rolagem horizontal se necessário */
    overflow-y: 100%; /* Garante rolagem vertical */
  cursor: normal;
  }
  
  #page-body {
    opacity: 0;
    transition: opacity 2s ease-in-out;
  }
  #page-body.loaded {
    opacity: 1;
  }
  
  /*fundo ( a cor origial é #5a0d0d*/
  #secfundo{
    height: 100%;
  }
  #fundo{
    background-image: linear-gradient(to left, #5a0d0d, black);
    background-size: 500% 100%;
    width: 100%;
    height: 1200dvh;
    margin-top: -2280%;
    animation: degrade-animado 4s infinite alternate;
  }
  
  @keyframes degrade-animado{
    0%{
      background-position-x: 0%;
    }
    100%{
      background-position-x: 100%;
    }
  }
  
  header {
    width: 100%;
    height: 150px;
    margin: 0 auto;
    margin-top: -15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; /* Garante que o espaço entre os elementos seja equilibrado */
    z-index: 1000;
  }
  
  #header {
    background-color: rgb(114, 0, 0);
    width: 100%;
    height: 120px;
    border: white solid 5px;
    border-left: none;
    border-right: none;
    box-shadow: black 20px 0px 10px 0px;
    position: fixed;
    z-index: 999999;
    display: flex;
    justify-content: space-between; /* Garante o espaçamento entre os itens */
    align-items: center; /* Alinha verticalmente */
    padding: 0 0px; /* Ajuste de espaçamento nas laterais */
  }
  
  .content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  nav {
    width: 100%;
    height: 15vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-left: 0;
    background-color: transparent;
    user-select: none;
  }

  #menulist {
    display: block;
    position: absolute;
    width: 80vw; /* largura fixa para evitar mudanças no fechamento */
    top: 8.5vh; /* posição fixa do topo */
    transition: height 0.6s ease; /* Transição suave apenas na altura */
    z-index: 1000;
    height: 0px; /* Menu inicialmente fechado */
    overflow-y: auto; /* Evita rolagem ao fechar */
  }
  
  #nav.active #menulist {
    height: 75dvh; /* Altura total do menu ao abrir */
    margin-left: 0vw;
    top: 105%;
    visibility: visible; /* Torna o menu visível */
    border-radius: 0px 0px 20px;
    background-color: rgb(86, 86, 86); /* Cor de fundo do menu */
  }
  
  /* Ajustes adicionais permanecem os mesmos */
  #log{
    display: none;
  }
  #logo {
    display: none;
  }
  
  #logoi {
    display: block;
    visibility: visible;
    width: 80px;
    height: 60px;
    margin-left: 36%;
    background-color: transparent;
  }
  
  .imgl {
    width: 70px;
    height: 60px;
    margin-left: 0vw;
  }
  #log-menu{
    width: 25vw;
    display:block;
    padding: 5px;
  margin-left: 10vh;
    background-color: transparent;

  }
  #log-menu .login{
    margin-left: 0vw;
  }
  #menulist li{
    width: 90%;
    height: 10vh;
    text-align: center;
    padding-top: 3.5vh;
    border: solid 2px white;
    border-radius: 10px;
    transition: 1.2s;
    background-color: #5a0d0d;
  }
  #menulist li:hover{
    transform: scale(1.1);
    box-shadow: #000000 0px 0px 10px;
  }
  #menulist a {
    color: white;
    text-align: center;
  }

  .carrinho-txt{
    display: block;
  }
  #carho img{
   display: none;
  }
  .search-box{
    display: none;
  }

  
  .search-button img{
    display: none;
  }
  
  .pesquisa-mobile{
    display: block;
    margin-top: -50%;
  }
  .pesquisa-mobile input{
    width: 30%;
    height: 5vh;
    background-color: #5a0d0d;
    border: solid white 2px;
    border-radius: 8px;
    padding-left: 10px;
    color: white;
  }
  .pesquisa-mobile ::-webkit-input-placeholder {
    color: rgb(208, 208, 208);
 }

  
  
  #btn-mobile {
    width: 40vw;
    height: auto;
    display: flex;
    font-size: 1.5rem;
    border: none;
    margin-right: 100vw;
    background: none;
    cursor: pointer;
    gap: 1rem;
    color: white;
    background-color: transparent;
  }
  
  #hamburger {
    border-top: 5px solid;
    width: auto;
    height: 5vh;
    margin-left: -85dvw ;
    margin-top: 2vh;
    background-color: transparent;
  }
  
  #hamburger::after,
  #hamburger::before {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }
  
  #nav.active #hamburger {
    border-top-color: transparent;
  }
  
  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }
  
  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }
  

  /* Ajustes no slider */
  #banner {
    width: 100%;
    height: 50vh; /* Ajuste para tela pequena */
    margin-left: -0.5vw;
  }

  #banner .container-slider {
    width: 100%;
    height: 100%;
    margin-left: 0%;
    background-color: #08ad6e;
  }

  .container-slider {
    display: flex;
    width: 100vw;
    min-height: 50vh;
    align-items: center;
    justify-content: center;
    gap: 12rem;
    margin-top: 0px;
    }
  
  .container-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100px;
    margin-top: -35vh;
  }
  
  .slider {
    opacity: 0;
    transition: opacity 1s;
    position: absolute;
    width: 100%;
    border-radius: 10px;
  }
  
  
  .on {
    opacity: 1;
  }
  .container-slider #prev-button{
    width: 60vw;
    height: 8vh;
    margin-top: -100%;
    margin-left: 1vh;
    background-color: transparent;
  }
  .container-slider #next-button{
    width: 60vw;
    height: 8vh;
    margin-top: -100%;
    margin-right: 0vh;
    background-color: transparent;
  }


#prev-button img, #next-button img {
  width: 50%;
  height: 50%;
  filter: invert(1);
}
.container-images img{
  width: 130%;
  height: 160%;
  box-shadow: 0px 0px 20px white;
}

.balls-slide {
  text-align: center;
  margin-top: -40%;

}

.ball {
  display: inline-block;
  width: 2vw;
  height: 1.5vh;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.ball.active {
  background-color: #ff0000; /* Cor da bolinha ativa */
}


  #marcas {
    width: 100%;
    height: auto;
    background-color: yellow;
    margin-top: 20px;
    overflow-x: scroll;
  }

  .marcas {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .imgmarca {
    width: 55px;
    height: 55px;
    margin-top: 10px;
    border-radius: 50%;
    background-color: white;
    display: inline-block;
    box-shadow: black 0px 0px 10px;
    transition: 0.3s ease-in-out;
    margin-left: 10px;
  }

  .imgmarca:hover {
    width: 80px;
    height: 80px;
  }

  section .filter-card {
    width: 80%;
    height: 10vh;
    background: #9c1f1f;
    border-radius: 8px;
    margin-top: -22%;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: black 5px 5px 25px 0px;
    transition: 1.4s ease-in-out;
  }
  .search-button h4{
    display: none;
  }

  .search-input {
    width: 90%;
    height: 90%;
    border: none;
    border-radius: 4px 0 0 4px;
    text-indent: 5px;
    font-size: 18px;
    padding-top: 2px;
    transition: 0.3s ease-in-out;
  }
  .search-button img{
    display: block;
    width: 70%;
    height: 90%;
    filter: invert(1);
    margin-left: 20%;
    transition: 1.2s;
  }
  .search-button img:hover{
    filter: none;
  }

  .search-button {
    width: 20%;
    height: 90%;
    border-radius: 0 4px 4px 0;
    background: rgb(114, 0, 0);
    color: white;
    font-size: 1em;
    transition: 0.2s ease;
    cursor: pointer;
  }

  .search-button:hover {
    background: white;
    color: rgb(114, 0, 0);
  }

  .cattext{
    font-size: 8vw;
    text-align: center;
  }
  .title-wrapper-catalog {
    margin-top: 200px;
    padding-bottom: 20px;
  }
  
  section .card-wrapper {
    max-width: 90%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    grid-gap: 30px;
    margin-left: 5%;
    padding-top: 0px;
  }
  .card-item .alta-card{
    width: 60px;
    height: 50px;
    margin-top: -4vh;
    margin-left: 85%;
    padding: 5px 10px 10px;
    background-color: white;
    border-radius: 100%;
    border: solid #5a0d0d 2px;
    box-shadow: none;
  }
  
  section .card-item {
    height: 400px;
    background: var(--gray);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    box-shadow: black 5px 5px 25px 0px;
    margin-top: 30px;
    transition:  0.3s ease-in-out;
  }
  
  .card-content {
    height: 40%;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transition:  0.3s ease-in-out;
  }
  .card-content h3{
    margin-left: 20px;
    margin-right: 20px;
    margin-top:-5%;
    text-align: justify;
    font-size: 20px;
  }
  .card-content p{
    text-align: justify;
    margin: 10px;
  }
  
  .card-item img {
    width: 85%;
    height: 150px;
    box-shadow: black 0px 0px 20px 5px;
    border-radius: 10px;
    margin-top: -3vh;
  }
  
  .card-item h4 {
    width: 90%;
  }
  
  .card-item p {
    width: 90%;
    height: 40px;
    font-size: 14px;
    margin-top: -10px;
    font-style: italic;
    color: #00000070;
  }
  
  .card-item button {
    width: 120%;
    height: 60%;
    padding: 5px 0px;
    margin-top: 10px;
    border: none;
    background: #9c1f1f;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: 0.3s ease;
    margin-bottom: 10px 0px;
    margin-top: 20px;
    transition:  1.0s ease-in-out;
  }
  
  .card-item button:hover {
    background: #dedede;
    color: #9c1f1f;
  }
  .bvmais{
    background-color: #9c1f1f;
    color: white;
    border-radius: 10px;
    font-size: 30px;
    text-align: center;
    width: 60%;
    height: 50px;
    margin-left: 20%;
    margin-top: 50px;
    transition:  2.10s ease-in-out;
  }
  .btmais{
    background-color: #9c1f1f;
    color: white;
    font-size: 30px;
    border: none;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    user-select: none;
    border: solid white 2px;
    box-shadow: black  0px 0px 5px 1px;
  }
  .btmais:hover{
    box-shadow: white  0px 0px 10px 2px;
    transition:  0.20s ease-in;
  }
  .vconheca{
    height: 170px;
    margin-left: -900px;
    margin-right: -900px;
    margin-top: 15px;
    background-color:  rgb(114, 0, 0);
    transition:  3.18s ease-in-out;
  }
  h2.tconheca{
    width: 20%;
    height: 40px;
    color: white;
    margin-top: -110px;
    margin-left: 40%;
    text-align: center;
    align-content: center;
    font-size: 180%;
    font-style: normal;
  }
  #secao-dps-conheca{
    z-index: 999999;
  }
  #fundosobre{
    width: 100%;
    height: auto;
    }
    #fundosobre img{
      width: 100%;
      height: 78vh;
      filter: opacity(40%);
    }
    .about {
      width: auto;
      height: 10vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      margin-top: 10vh;
      background-color: white;
    }
    
    .about-content {
      height: 60vh;
      margin: 0 auto;
      border-radius: 8px;
      padding: 10px;
      display: flex;
      align-items: center;
      text-align: center;
      justify-content: space-between;
      background: white;
      border: solid #5a0d0d 5px;
      margin-top: -75vh;
      box-shadow: black 5px 5px 25px 0px;
      filter: opacity(100%);
    }
    .title-wrapper-about{
      height: 10vh;
      background-color: transparent;
    }
    .title-wrapper-about h2 {
      width: 100%;
      font-size: 10vw;
      text-align: center;
      margin-top:-80vh;
      margin-left: 0%;
      color: black;
      background-color: transparent;
      filter: saturate(1);
      z-index: 999;
      position: relative;
      transition:  0.8s ease-in-out;
    }
    
    .left {
      width: auto;
      display: none;
    }
    
    .imgfsobre{
      display: none;
    }
    
    .right {
      width: auto;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding-top: 5%;
      transition:  1.3s ease-in-out;
      background-color: white;
    }
    
    .right h3 {
      text-align: center;
      width: 100%;
      margin-bottom: 20px;
    }
    
    .right p {
      max-width: 90%;
      font-size: 12px;
      letter-spacing: 2px;
      text-align: justify;
      padding-left: 10%;
      overflow: auto;
      color: rgba(0, 0, 0, 0.547);
    }
    
    /* Features */
    #feature {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start; /* Ajusta para que o conteúdo se alinhe ao topo */
      padding: 0;
      margin-top: 0;
      background: transparent;
      min-height: 100vh; /* Define a altura mínima como 100% da viewport */
      gap: 30px; /* Adiciona espaçamento entre os itens */
    }
    .title-wrapper-feature {
      margin-top: 0vh;
      padding: 0px 0px;
      text-align: center;
      background-color: transparent;
    }
    .title-wrapper-feature h2 {
      width: 100%;
      font-size: 200%;
    }
    
    
    /* Ajustes para o bloco do feature-card */
    .feature-card-block {
      max-width: 95%;
      min-width: auto;
      height: auto; /* Ajusta a altura para caber no conteúdo */
      background: white;
      margin: 0 auto;
      margin-top: 2vh;
      margin-bottom: 50px; /* Margem inferior para separar do footer */
      border-radius: 8px;
      padding: 5%;
      display: grid;
      align-content: center;
      grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); /* Flexível para se ajustar ao tamanho da tela */
      grid-gap: 30px;
      box-shadow: black 0px 0px 10px;
      transition: 1.3s ease-in-out;
    }
    
    /* Ajusta o conteúdo para o restante da tela */
    #feature .content {
      height: auto; /* Permite que o conteúdo se ajuste de forma dinâmica */
    }
    
    .feature-card-item {
      width: 70%;
      max-width: 80%;
      height: auto;
      padding: 30px;
      display: flex;
      margin-left: 4vw;
      flex-direction: row; /* Coloca os elementos em linha (lado a lado) */
      align-items: center;
      align-content: center;
      border: solid 2px #cbcbcb;
      border-radius: 10px;
      transition: 1.9s;
      gap: 20px; /* Espaçamento entre imagem e texto */
    }
    
    .feature-text-content {
      max-width: 90%;
      margin: 5px;
      text-align: justify;
    }
    
    .feature-card-item img {
      display: none;
    }
    
    .footer-company,
    .footer-contact,
    .footer-social {
      color: white;
      height: 100%;
      min-height: 100px;
    }
    
    .footer-links h4 {
      margin-bottom: 10px;
      margin-top: 20px;
    }
    
    .footer-social .social-icons a {
      color: white;
      text-decoration: none;
      font-style: normal;
    }
    
    .footer-links {
      margin-bottom: 5%;
      background-color: transparent;
      margin-left: 5%;
    }
    
    .face {
      margin-left: 5px;
      cursor: pointer;
    }
    
    /* Estilização para os ícones sociais */
    .footer-company h6 {
      color: white;
    }
    
    .footer-company a {
      text-decoration: none;
    }
    
    .footer-company h6:hover {
      cursor: pointer;
      text-decoration: underline;
    }
    
    .footer-contact h4 {
      font-size: 20px;
    }
    
    .main .footer-social img {
      width: 32px;
      height: 32px;
      margin-left: 0;
      margin-top: 1vh;
    }
    
    .footer-contact .imgctt {
      width: 30px;
      margin-top: 3px;
    }
    
    .footer-contact .imgmail {
      width: 30px;
      margin-top: 5px;
    }
    
    .footer-contact .imglocal {
      width: 40px;
      margin-left: -4px;
      filter: invert(100%);
    }
    
    .footer-contact h6 {
      margin-top: -4vh;
      margin-left: 12vw;
      color: white;
    }
    
    .linknumero {
      text-decoration: none;
      margin-left: 30vw;
    }
    
    .linklocal {
      text-decoration: none;
    }
    
    /* Último bloco do footer */
    .last-last {
      width: 100%; /* Usa 100vw para cobrir toda a tela */
      height: auto;
      background-color: #3e3e3d;
      color: white;
      font-size: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      padding: 5% 0%;
    }
    .last-last h5{
      font-size: 3.5vw;
    }
    
    footer .last {
      width: 100vw; /* Garante que ocupa toda a largura */
      height: 60px;
      background: black;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      padding: 0;
    }
  }