@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0px;
    background: #151515;
    width: 100%;
    font-family: 'Poppins';
    color: white;
}

header {
    width: 100%;
    height: 60px;
    background: #050505;
    display: flex;
    align-items: center;
    text-align: right;
    position: absolute;
    top: 0;
    text-shadow: black 2px 2px  40px;
}

.logo {
    display: flex;
    width: 100%;
    margin: 5%;
    align-items: center;
    text-shadow: black 2px 2px  40px;
}
.logo a {
    margin: 2%;
    color: rgb(255, 255, 255);
    text-shadow: black 2px 2px  40px;
}


.links {
    margin-right: 10%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
  }
  
  .links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    padding: 5%;
    display: flex;
    align-items: center;
    text-shadow: black 4px 4px 40px;
    position: relative;
    padding-bottom: 9px; /* Aumentei o padding-bottom para dar mais espaço */
  }
  
  /* Estilo da linha para os links normais (animação ao hover) */
  .links a:not(.select)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px; /* Move a linha um pouco para baixo */
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out, bottom 0.3s ease-in-out; /* Adicionei bottom à transição */
  }
  
  .links a:not(.select):hover::after {
    width: 100%;
    left: 0;
    bottom: -8px; /* Mantém a linha na mesma posição ao passar o mouse */
  }
  
  /* Estilo para o link selecionado */
  .select {
    color: white;
    text-decoration: none;
    padding: 5%;
    position: relative;
    padding-bottom: 9px; /* Aumentei o padding-bottom para consistência */
  }
  
  /* Faz a linha branca aparecer estaticamente no link selecionado */
  .select::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px; /* Move a linha um pouco para baixo */
    width: 100%;
    height: 2px;
    background-color: white;
  }


.menulat {
    display: none; 
    flex-direction: column;
    width: 20%;
    height: 100vh;
    background-color: #050505;
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 1000; 
    transition: ease 2s;
}

.items {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.items a {
    padding: 10px 0;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.items a:hover {
    padding: 10px 0;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-bottom: 2px solid white;
}

.items a ion-icon {
    margin-right: 10%;
}
.show-menu {
    display: flex ;
}
.sobre {
    text-align: center;
}
.sobre h1 {
    border-bottom: 2px solid white;
    width: 1200px;
    padding: 10px;
    margin: auto;
}
#setaprabaixo {
    display: flex;
    justify-content: center;
    color: white;
    font-size: 250%;
    transition: all 2s;
    text-align: center;
    margin: auto;
}
#setaparcima {
    color: white;
    font-size: 250%;
    transition: ease 4s;
    text-align: center;
}
.pecas {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(32, 32, 32);
    width: 40%;
    border-left: solid 4px rgb(255, 255, 255);
    padding: 20px;
    box-sizing: border-box;
    margin: auto;
}

.pecas p {
    text-align: left;
    color: white; 
    width: 100%; 
    margin: 5px 0; 
    transition: all 2s;
}

footer {
    width: 100%;
    height: 120px; /* altura definida para o rodapé */
    background-color: #050505;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 200%;
    transition: all 2s;
    border-bottom: none;
}

footer h1 {
    margin: 0;
    color: white;
    border-bottom: none;
}
#footer h1 {
    transition: all 2s;
    border-bottom: none;
}
.modepage  {
    padding: 1%;
    color: white;
    margin-right: 2%;
    cursor: pointer;
    transition: ease 2ms;
}
#perfil {
    width: 200px;
    height: 200px;
    border: solid rgb(255, 255, 255) 2px;
    border-radius: 200%;
}
.contato {
    padding: 5%;
}
.contato a {
    color: white;
    padding: 2%;
    margin: 5%;
    border: solid white 2px;
    box-shadow: black 2px 2px 10px;
    align-items: center;
    font-size: 40px;
    transition: all 1s;
}
.contato a:hover {
    color: white;
    padding: 5%;
    margin: 5%;
    border: solid white 2px;
    box-shadow: black 2px 2px 20px;
    align-items: center;
    font-size: 80px;
    transition: all 1s;
    text-decoration: underline;
}
.item-cont {
    padding: 0%;
}
.contato a {
    color: white;
    border: 2px white solid;
}
.lingsimg {
    width: 200px;
    height: 200px;
    padding: 5%;
}
div.linksh {
    padding: 20px;
}
a#homelinks {
    color: white;
    text-decoration: none;
    position: relative; 
    padding-bottom: 5px; 
    padding-left: 10px;

  }
  
  a#homelinks::after {
    content: '';
    position: absolute;
    left: 50%; 
    bottom: 0;
    width: 0;
    height: 2px; 
    background-color: white;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out, bottom 0.3s ease-in-out; 
  }
  
  a#homelinks:hover::after {
    width: 100%; 
    left: 0; 
    bottom: -5px; 
  }
  
  a#homelinks.selecte {
    padding-bottom: 7px; 
    position: relative; 
  }
  
  a#homelinks.selecte::after {
    content: '';
    position: absolute;
    left: 0; 
    bottom: -5px; 
    width: 100%; 
    height: 2px; 
    background-color: white;
  }
  
  
.container-slider {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden; 
    height: 600px; 
}

.slider {
    display: none;
  }
  
  .slider.active {
    display: block;
  }
  


.slider img {
    max-width: 100%;
    height: auto;
}




  button {
    background-color: black;
    cursor: pointer;
    color: white;
    border: none;
    transition: all 0.5s;
    font-size: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    align-items: center;
    border-radius: 10px;
  }

  button:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border-radius: 10px;
    padding: 5px;
  }
  .desc {
    font-size: 16px;
    color: #ffffff; /* Certifique-se de que a cor do texto seja visível */
    margin-top: 1px;
}

  #prev-button {
    left: 10px;
  }

  #next-button {
    right: 10px;
  }

      


@media (max-width: 1400px) {
    .links  {
        justify-content: center;
    }
    .logo h1 {
        color: rgb(255, 255, 255);
        transition: ease 2ms;
        width: 50px;
    }
    .modepage  {
        color: white;
        cursor: pointer;
        transition: ease 2ms;
    }
    .menulat {
        display: none;
        flex-direction: column;
        width: 40%;
        height: 100vh;
        background-color: black;
        position: fixed; 
        top: 0;
        left: 0;
        z-index: 1000; 
        transition: ease 2s;
        justify-content: center;
        text-align: center;
    }
    
    .items {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        text-align: center;
        justify-content: center;
        text-align: center;
        position: relative;
        top: 0px;
    }
    
    .items a {
        display: flex;
        color: rgb(255, 255, 255);
        text-decoration: none;
        font-size: 80%;
        margin-right: 30%;
        text-align: center;
    }
    .items a ion-icon {
        margin-right: 50px;
    }
    .sobre {
        text-align: center;
    }
    footer {
        width: 100%;
        height: 150px; /* altura definida para o rodapé */
        background-color: black;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 800%;
    }
    
    footer h1 {
        margin: 0;
        color: white;
    }
    
@media (max-width: 800px) {
    .links {
        display: none;
    }
    .menulat {
        display: none;
        flex-direction: column;
        width: 40%;
        height: 100%; /* Preenche a altura total da viewport */
        background-color: #050505;
        position: fixed; /* Fixa o menu na tela */
        top: 0;
        left: 0;
        z-index: 1000; /* Garante que o menu fique acima de outros elementos */
        transition: ease 2ms;
        font-size: 10px;
    }
    .modepage  {
        color: white;
        cursor: pointer;
        transition: ease 2ms;
    }
    
    .items {
        display: flex;
        flex-direction: column; /* Para que os links fiquem na vertical */
    }
    
    .items a {
        color: rgb(255, 255, 255);
        text-decoration: none;
        font-size: 80%;
    }
    .items a ion-icon {
        margin-right: 10%;
    }
    .sobre {
        text-align: center;
    }
    .sobre a {
        color: white;

    }
    footer {
        width: 100%;
        height: 150px; /* altura definida para o rodapé */
        background-color: #050505;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 800%;
    }
    
    footer h1 {
        margin: 0;
        color: white;
    }
    .contato {
        padding: 5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; 
    }
    
    .contato a {
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        border: solid white 2px;
        box-shadow: black 2px 2px 10px;
        font-size: 40px;
        transition: all 1s;
        width: auto;
        padding: 15%; 
        text-decoration: none; 
    }
    
    .contato a:hover {
        color: white;
        padding: 10%; /* Reduz o padding ao passar o mouse */
        border: solid white 2px;
        box-shadow: black 2px 2px 10px;
        font-size: 100px;
        transition: all 1s;
        text-decoration: underline;
        width: auto;
    }
}
}