@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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.linha {
    width: 50px;
    height: 3px;
    background-color: black;
    border: none;
    margin: 10px auto;
  }  
a{
    text-decoration: none;
    color: #ffffff;
}

.navbar {
    width: 100%;
    height: 50px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;  
    background-color: #ffd620; 
    padding:  30px 50px; 
}


/* Estiliza o botão do menu mobile */
.menu-toggle {
    display: none; 
    background: none;
    border: none; 
    color: #262702; 
    font-size: 28px; 
    cursor: pointer; 
}
/* Define a lista de navegação */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    
}

.nav-links a:hover{
  color: #ffffff;
}

/* Define o estilo dos links do menu */
.nav-links a {
    
    text-decoration: none;
    color: #0a0a0a;
    font-size: 18px; 
}

/* Hero Section */
.hero {
    width: 100%;
    height: 500px;
    background: url('IMG/empresaLogistica.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-text {
    background: rgba(0, 0, 0, 0.562);
    padding: 20px;
    border-radius: 8px;
}

.about{
    display: flex;
    text-align: left; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    gap: 30px;
    margin: 10px 50px;
}
.about h2{
 color: rgb(1, 96, 185);
}

.container-beneficios {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1000px;
    margin: auto;
    padding: 40px;
}
.valores-list{
    text-align: left;
}
/* Valores */ 
.valores{
    margin-top: 5dvh;
    width: 100%;
    padding: 20px;
    text-align: center;
    background-color: #f8f8f5;
    
}
.valores h2{
    margin-top: 5dvh;
}
.valores-list{
    margin-top: 5dvh;
}

.card {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 5%;
    background: #e0e0e0;
    box-shadow: 15px 15px 30px #bebebe,
               -15px -15px 30px #ffffff;
    transition: box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;         
    color: #636161;  
    padding: 10px;
}
.card:hover {
    box-shadow: 15px 15px 30px #f7f5a7,
               -15px -15px 30px #eff179;
    color: #262702;
}

footer {
    background-color: #f8fafc;
    padding: 20px;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer-container {

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer-info h2 {
    color: #f1d324;
    margin-bottom: 10px;
}

.footer-info p {
    color: #555;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #555;
    font-size: 18px;
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: right;
    gap: 5px;
}

.footer-links a {
    color: #2176ff;
    text-decoration: none;
    font-size: 14px;
}


@media (max-width: 1000px) {
    .menu-toggle {
        display: block;
    }
    .no-scroll{
        overflow: hidden;
    }
    .nav-links {
        z-index: 5;
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 60px; 
        left: 0; 
        width: 100%; 
        height: 100%;
        align-items: center;
        justify-content: space-around;
        background: linear-gradient(0deg, rgb(204, 147, 24) 0%, rgba(255,214,32,1) 100%);
        padding: 10px 0;
        padding-bottom: 90px; 
        text-align: center; 
        gap: 5px;
    }
    .nav-links li{
        border-radius: 15px;
        width: 300px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(6px);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.158);
        }

    .nav-links li a{
        font-size: 1.5rem;
    }
    /* Exibe o menu quando a classe "active" for adicionada */
    .nav-links.active {
        display: flex; /* Exibe o menu */
    }
    .about{
        text-align: left;
        height: 100%;
    }
    .contatos{
        flex-direction: column;
    }
    .footer-container{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .footer-info{
        width: 50%;
    }
}
