@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;
}

/* Layout Base */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
}
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: 80vh;
    background: url('IMG/camiLOG3.jpeg') 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.719);
    padding: 20px;
    border-radius: 8px;
}

.hero button {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
}

/* Galeria de Imagens */
.gallery {
    text-align: center;
    width: 100%;
}
.text-gallery{
    padding: 40px 20px;
    margin-top: 10px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 600px;
    margin: auto;
    padding: 20px;
}

.img1{
    display: flex;
 
    color: #f8f5f5;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 150px;
    background-image: url(IMG/container-terminal-3593640_1280.jpg);
    border-radius: 5px;
    background-size: cover;
}

.img2{
    
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 150px;
    background-image: url(IMG/truck-2138974_1280.jpg);
    border-radius: 5px;
    background-size: cover;
}

.img3{
    
    color: #f8f5f5;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 150px; 
    background-image: url(IMG/empilha.jpg);
    border-radius: 5px;
    background-size: cover;
    
}

.img4{
    
    color: #f8f5f5;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 150px;
    background-image: url(IMG/caminhaoEstrada.jpg);
    border-radius: 5px;
    background-size: cover;
}
.img1 h2{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.600); 
    backdrop-filter: blur(2px); 
}
.img2 h2{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.600); 
    backdrop-filter: blur(2px); 
}

.img3 h2{
    width: 100%;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.600); 
    backdrop-filter: blur(2px); }

.img4 h2{
    
    width: 100%;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.600); 
    backdrop-filter: blur(2px);   
}

/* Agendamento */
.booking {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
}

button {
    margin-top: 5px;
    padding: 10px 20px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
}

/* Valores */ 
.container-beneficios {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 800px;
    margin: auto;
    padding: 40px;
}
.valores{
    margin-top: 5dvh;
    width: 100%;
    padding: 20px;
    text-align: center;
    background-color: #f8f5f5;
    
}
.valores h1{
    margin-top: 5dvh;
}
.linha {
    width: 50px;
    height: 3px;
    background-color: black;
    border: none;
    margin: 10px auto;
  }  
.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: #5e5454;  
}
.card:hover {
    box-shadow: 15px 15px 30px #f7f5a7,
               -15px -15px 30px #eff179;
    color: #262702;

}
/*shero*/
.s-hero{
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 100px 0;
    .area{
        position: sticky;
        top: 100px;
        background-color: #000000;
        width: 90%;
        border-radius: 15px;
        height: 500px;
        display: flex;
        align-items: center;
        color: white;
        justify-content: center;
        padding: 10px;
        gap: 10px;
        
        &:nth-child(2){
            background-color: #f1d324;
            color: #000000;
        }
        &:nth-child(4){
            background-color: #f1d324;

            color: #000000;
        }
    }
    .area h1{
        font-size: 3rem;
    }
    .area p{
        font-size: 1.2rem;
    }
}
/*galeria*/
.galeria-imagens {
    background-color: #000;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    align-items: center;
    padding: 20px;
  }
  
  .list {
    padding: 50px;
    columns: 250px;
    transition: max-height 0.5s ease;
    overflow: hidden;
  }
  
  .list-img {
    width: 100%;
    margin-bottom: 1em;
    border-radius: 10px;
  }

  
  button#toggleGaleria {
    background-color: #f1cf08;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
  }
  
/*contacts*/
.secao-localizacao {
    padding: 40px 20px;
    width: 100%;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .bloco-local {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 20px;
  }
  
  .mapa {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .info-contato {
    padding: 10px;
  }
  
  .info-contato h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 5px;
  }
  
  .info-contato p {
    color: #555;
    margin: 4px 0;
    font-size: 1rem;
  }
  
  .info-contato .mensagem {
    margin-top: 10px;
    font-style: italic;
    color: #444;
  }

/*fac==*/
.faq-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 50px;
    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: #bebebe;  
}
  
  .faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .faq-divider {
    width: 100px;
    height: 3px;
    background-color: #0077cc;
    margin: 0 auto 30px;
    border: none;
    border-radius: 5px;
  }
  
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .faq-item {
    width: 500px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .faq-question {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    background-color: #0077cc;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .faq-question:hover {
    background-color: #005fa3;
  }
  
  .faq-answer {
    padding: 15px 20px;
    display: none;
    background-color: #f1f1f1;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .faq-answer p {
    margin: 5px 0;
  }

/*FAC==*/ 
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 (min-width: 768px) {
    .bloco-local {
      flex-direction: row;
      align-items: center;
    }
  
    .mapa, .info-contato {
      flex: 1;
    }
  
    .mapa {
      height: 250px;
    }
  
    .info-contato {
      padding-left: 30px;
    }
  }


@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 */
    }
    .section-Cliente{
        height: 1200px;
    }
    .cliente-cards-area{
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }

    .feedback-section{
        margin-top: 75dvh;
    }
    
    .feedback-section h2{
        font-size: 2rem;
    }
    .cont-perg{
        flex-direction: column;
        margin-bottom: 0px;
        max-width: 400px;
    }
    .contact-section{
        display: flex;
        height: 2000px;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        
    }
    .faq-item{
        width: 100%;
    }
    .footer-container{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .footer-info{
        width: 50%;
    }
}
@media (max-width: 600px) {
    
    .list{
    padding: 0%;
    columns: 150px;
   }
    .faq-item{
        width: 300px;
    }
    .faq-question {
      font-size: 1rem;
      padding: 10px 16px;
    }
  
    .faq-answer {
      font-size: 0.9rem;
      padding: 12px 16px;
    }
  }