body, p{
  width: 100%;
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-size: 1.2rem;
  font-family: arial;
}
:root {
  --orange: #f78b00;
  --blue: #00285f;
  --gray: #ededed;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  cursor: default;
  user-select: none;
}
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* Permite rolagem horizontal se necessário */
  overflow-y: auto; /* Garante rolagem vertical */
  scrollbar-width: thin;
}

#page-body {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
#page-body.loaded {
  opacity: 1;
}

/*fundo ( a cor origial é #5a0d0d*/
#secfundo{
  height: 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% - 0px); /* 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 20px 0px 10px 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: 0; /* 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: -65px;
}
.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: -140px;
}

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: -30px;
  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: 26vw;
  margin-top: 32px;
  border-radius: 100%;
}
.login {
  width: 72px;
  height: 72px;
  margin-top: -5px;
  margin-left: 20px; /* 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: 2vw;
  user-select: none;
  filter: invert(100%);
}
.crinho{
  margin-top: 25px;
  margin-left: 30px;
  margin-right: 10px;
  width: 100%;
  height: 100%;
  font-size: 5px;
  user-select: none;
}
/*Pesquisa no menu inicio 
]
]
*/
.search-box{
  height: 40px;
  position: absolute;
  background: white;
  border-radius: 50px;
  padding: 10px;
  margin-left: 115vh;
  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;
}



.voltar {
  width: 50px;
  height: 50px;
  text-decoration: none;
  font-size: 20px;
  align-items: center;
  color:  #5c0000;
  background-color: transparent;
  margin-left: 50px;
  margin-top: 80px;
}

.voltar:hover {
  text-decoration: underline;
}
/*fim do menu*/
.filter-card {
  width: 960px;
  height: 150px;
  background: #9c1f1f;
  border-radius: 10px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: black 0px 0px 50px;
  margin-top: 20px;
  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;
  box-shadow: black 0px 0px 50px;
  transition:  0.3s ease-in-out;
}
.search-button {
  width: 150px;
  height: 70px;
  border-radius: 0px 4px 4px 0px;
  border: none;
  margin-top: -0px;
  background: rgb(114, 0, 0);
  box-shadow: black 0px 0px 50px;
  color: white;
  cursor: pointer;
  font-size: 1.1em;
  transition: 1.1s ;
  user-select: none;
}


.search-button:hover {
  background: white;
  color: rgb(114, 0, 0);
  box-shadow: 0px 0px 5px 0px;
}


section .filter-card {
  width: 80%;
  height: 10vh;
  background: #9c1f1f;
  border-radius: 8px;
  margin-top: 40%;
  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);
}

/*filtro*/

#filtro{
  width: 100%;
  height: 20vh;
  display: flex;
  margin-top: -18.5vh;
  margin-left: 60vh;
  justify-content: center;
  align-items: center;
}

#filtro details{ 
  width: 150px;
  height: 6vh;
  text-align: center;
  align-content: center;
  border-radius: 10%;
  font-style: normal;
  border: solid white 2px;
  background-color:  rgb(42, 42, 42);
}

#filtro summary {
  cursor: pointer; 
  font-weight: bold;
  color: white;
  padding: 5px;
  border-radius: 20px;
}

#filtro[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: 1.1s;
}

#filtro p {
  width: auto;
  cursor: pointer;
  background-color: white; /* Fundo branco para o conteúdo expandido */
  color: black; /* Cor do texto do conteúdo */
  padding: 5px;
  margin: 0;
  font-style: normal;
  border-radius: 10%;
  border: 5px solid  #5c0000;
  overflow: hidden;
  max-height: 0; /* Começa com altura zero */
  transition: max-height 0.9s ease; /* Transição suave */
}


/*css flex box*/
h1{
  text-align: center;
  margin-top: 10px;
  font-size: 60px;
  user-select: none;
  color: #140000;
}
.imgi{
  max-width: 100%;
  display: block;
}
 .flex{
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
 }
 .flex > div{
  flex: 1 1 250px;
  margin: 20px;
 }
 .card-content {
  height: 40%;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
  justify-content: space-around;
  transition:  0.3s ease-in-out;
}

 .card-item{
  border-radius: 10px;
  box-shadow: black 0px 0px 20px 10px;
  flex-wrap: wrap;
  padding: 40px 10px 0px;
  margin-block: 50px;
  background-color: rgb(232, 232, 232);
 }


 .card-item button {
  width: 90%;
  height: 30%;
  padding: 5px 0px;
  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: 30px;
  transition:  1.0s ease-in-out;
}

.card-item button:hover {
  background: #dedede;
  color: #9c1f1f;
}
.card-content h3{
  margin-left: 20px;
  margin-right: 20px;
  margin-top:0px;
  text-align: center;
  font-size: 15px;
}

.card-item p {
  width: 90%;
  height: 40px;
  font-size: 14px;
  margin-top: -10px;
  text-align: justify;
  font-style: italic;
  color: #00000070;
}

.card-item img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  margin-top: -30px;
}

/* Footer */
footer {
  width: 100%;
  height: 100px;  
  user-select: none;
  background-color: white;
  margin-top: -15vh;
}
.footer-social{
  background-color: transparent;
  cursor: default;
}


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;
}

@keyframes degrade-animado{
  0%{
    background-position-x: 0%;
  }
  100%{
    background-position-x: 100%;
  }
}




/*TELEFONE É AQUI!!!!!!!!!!!!*/

@media (max-width: 676px) {
  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: none;
  }

  #menulist {
    display: block;
    position: absolute;
    width: 80vw; /* largura fixa para evitar mudanças no fechamento */
    top: 8.5vh; /* posição fixa do topo */
    background: #e7e7e7;
    transition: height 0.6s ease; /* Transição suave apenas na altura */
    z-index: 1000;
    height: 0px; /* Menu inicialmente fechado */
    visibility: hidden; /* Esconde o menu visualmente */
    overflow-y: hidden; /* Evita rolagem ao fechar */
  }
  
  #nav.active #menulist {
    height: 65dvh; /* Altura total do menu ao abrir */
    margin-left: 0vw;
    top: 105%;
    visibility: visible; /* Torna o menu visível */
    overflow-y: auto; /* Permite rolagem quando necessário */
    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: 35%;
    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;
    border: solid 2px white;
    border-radius: 10px;
    background-color: #08ad6e;
  }
  #menulist a {
    color: white;
  }
  
  #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: -82dvw ;
    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;
  }
    
  .filter-card {
    width: 90%;
    height: 10vh;
    background: #9c1f1f;
    border-radius: 10px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: black 0px 0px 50px;
    margin-top: 20px;
    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;
    box-shadow: black 0px 0px 50px;
    transition:  0.3s ease-in-out;
  }
  .search-button {
    width: 20%;
    height: 70px;
    border-radius: 0px 4px 4px 0px;
    border: none;
    margin-top: -0px;
    background: rgb(114, 0, 0);
    box-shadow: black 0px 0px 50px;
    color: white;
    cursor: pointer;
    font-size: 1.1em;
    transition: 1.1s ;
    user-select: none;
  }
  
  
  .search-button:hover {
    background: white;
    color: rgb(114, 0, 0);
    box-shadow: 0px 0px 5px 0px;
  }
  
  
  section .filter-card {
    width: 20%;
    height: 10vh;
    background: #9c1f1f;
    border-radius: 8px;
    margin-top: 40%;
    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: 15px;
    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: 50%;
    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);
  }
  footer{
    margin-top: 5%;
  }

  footer .main {
    width: 100%;
    height: auto;
    background: rgb(114, 0, 0);
  }
  
  .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;
    }
  
}
