::-webkit-scrollbar{
    width: 20px;
  }
  ::-webkit-scrollbar-track {
    background: #000000;
    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: auto; /* Garante rolagem vertical */
    scrollbar-width: thin;
  }
  
#nav {
    width: 100%;
    margin-top: -1.2vh;
}

.container {
    width: 90%;
    max-width: 1600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.641);
    flex-grow: 1; /* Expande o container para ocupar o espaço disponível */
}

h1 {
    text-align: center;
    color: #870000;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: solid #870000;
    border-left: solid #870000;
    border-right: solid #870000;
    border-top: none;
}

th, td {
    padding: 10px;
    text-align: center;
}

th {
    background-color: #870000cf;
    color: white;
}

tr td img {
    width: 30vh;
    height: auto;
    border-radius: 10%;
    border: solid #870000 5px;
    box-shadow: black 0px 0px 20px;
}

tr td p {
    font-size: 30px;
}

.total {
    font-size: 18px;
    font-weight: bold;
    text-align: right;
}

.btn {
    cursor: pointer;
    display: inline-block;
    margin: 20px 0;
    padding: 18px 20px;
    background-color: #5cb85c;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
}

.btn:hover {
    background-color: #4cae4c;
}

/* Estilização do footer */

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;
  }