/* Estilos globais e de layout */ 
body { 
    margin: 0; 
    font-family: Arial, sans-serif; 
    background-color: #6a0dad; /* Cor sólida em vez da imagem */
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
} 

/* Adicionando media query para corrigir o fundo no celular */
@media (max-width: 768px) {
    body {
        /* Correção para o fundo em celulares */
        background-color: #6a0dad;
        background-attachment: scroll;
    }
    
    /* Configuração específica para o banner principal (hero) */
    .hero {
        background-size: cover; 
        background-position: center; 
        height: 70vh;
        padding: 20px;
        text-align: center;
        align-items: center;
    }

    /* Garantindo que o conteúdo tenha fundo legível em mobile */
    .logistica-humanizada, #servicos-humanizados, 
    #nosso-jeito-de-entregar, #quem-confia-na-humanlog, 
    #planos-e-precos, #quem-atendemos, #regioes-atendidas, 
    #baixe-nosso-app {
        background-color: rgba(255, 255, 255, 0.95);
        padding: 15px;
        margin: 10px 0;
        border-radius: 8px;
    }
}

header { 
    background-color: #6a0dad; 
    color: white; 
    padding: 10px 20px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    position: relative; 
    z-index: 1001; 
} 

.logo img { 
    height: 100px !important; 
    width: auto !important; 
    max-width: 100%; 
} 

nav { 
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
    gap: 10px; 
} 

nav a { 
    color: white; 
    text-decoration: none; 
    font-weight: bold; 
    padding: 8px 12px; 
    white-space: nowrap; 
    border-radius: 4px; 
    transition: background-color 0.3s; 
} 

nav a:hover { 
    background-color: rgba(255, 255, 255, 0.2); 
} 

.cta { 
    background-color: red; 
    color: white; 
    padding: 10px 15px; 
    border-radius: 5px; 
    text-decoration: none; 
    margin-left: 10px; 
    white-space: nowrap; 
    font-weight: bold; 
} 

/* Estilos do Menu Hambúrguer (desktop) */ 
.menu-toggle { 
    display: none; 
    flex-direction: column; 
    cursor: pointer; 
    width: 30px; 
    height: 25px; 
    justify-content: space-between; 
    background: none !important; 
    border: none !important; 
    padding: 0; 
} 

.menu-toggle span { 
    height: 3px; 
    background: white; 
    border-radius: 2px; 
    transition: all 0.3s ease; 
} 

/* Estilos do Hero */ 
.hero { 
    background-image: url('7417a672-66a6-47bb-805f-b3f2aaf78b69.png'); 
    background-size: cover; 
    background-position: center; 
    height: 90vh; 
    color: white; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-end; 
    justify-content: flex-start; 
    padding: 40px; 
    text-align: right; 
} 

.hero h1 { 
    font-size: 48px; 
    margin: 0; 
    color: white; 
} 

.hero p { 
    font-size: 24px; 
    font-weight: bold; 
    color: white; 
    margin: 10px 0 0; 
} 

/* Botão fixo WhatsApp */ 
.whatsapp-button { 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    background-color: #25d366; 
    color: white; 
    border-radius: 50%; 
    width: 60px; 
    height: 60px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-decoration: none; 
    box-shadow: none !important; 
    z-index: 1000; 
    font-size: 30px; 
} 

/* Logística Humanizada */ 
.logistica-humanizada { 
    background: white; 
    color: white; 
    padding: 20px 20px; 
    text-align: center; 
    font-family: Arial, sans-serif; 
} 

.logistica-humanizada .container { 
    max-width: 1300px; 
    margin: 0 auto; 
} 

.logistica-humanizada h2 { 
    font-size: 48px; 
    margin-bottom: 20px; 
} 

.logistica-humanizada p { 
    font-size: 24px; 
    line-height: 1.6; 
    margin-bottom: 30px; 
} 

.logistica-humanizada ul { 
    list-style: none; 
    padding: 0; 
    font-size: 20px; 
} 

.logistica-humanizada ul li { 
    margin-bottom: 12px; 
} 

/* Serviços Humanizados */ 
#servicos-humanizados { 
    padding: 20px 20px; 
    background-color: #6a0dad; 
    font-family: Arial, sans-serif; 
} 

#servicos-humanizados > div { 
    max-width: 1300px; 
    margin: 0 auto; 
    text-align: center; 
} 

#servicos-humanizados h2 { 
  color: white; 
    font-size: 3.5rem; 
    margin-bottom: 10px; 
} 

#servicos-humanizados p { 
    color: white; 
    font-size: 1.1rem; 
    margin-bottom: 10px; 
} 

#servicos-humanizados > div > div { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 50px; 
} 

#servicos-humanizados > div > div > div { 
    background: white; 
    padding: 20px; 
    border-radius: 20px; 
    box-shadow: none !important; 
    width: 200px; 
} 

#servicos-humanizados h3 { 
    color: black; 
} 

#servicos-humanizados p { 
    color: white; 
    font-size: 1.5em; 
} 

/* Nosso jeito de entregar */ 
#nosso-jeito-de-entregar { 
    padding: 20px 10px; 
    background: white; 
    font-family: Arial, sans-serif; 
} 

#nosso-jeito-de-entregar > div { 
    max-width: 1300px; 
    margin: 0 auto; 
    text-align: center; 
} 

#nosso-jeito-de-entregar h2 { 
    color: white; 
    font-size: 3.5rem; 
    margin-bottom: 15px; 
} 

#nosso-jeito-de-entregar p { 
    color: black; 
    font-size: 2.5rem; 
    margin-bottom: 35px; 
} 

#nosso-jeito-de-entregar > div > div { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; 
} 

#nosso-jeito-de-entregar > div > div > div { 
    background: #6a0dad; 
    padding: 20px; 
    border-radius: 5px; 
    box-shadow: none !important; 
    width: 200px; 
} 

#nosso-jeito-de-entregar h3 { 
    color: black; 
    margin-bottom: 10px; 
} 

#nosso-jeito-de-entregar p { 
    color: black; 
    font-size: 1.5rem; 
} 

/* Quem Confia na HumanLog */ 
#quem-confia-na-humanlog { 
    padding: 40px 5px; 
    background: #6a0dad; 
    font-family: Arial, sans-serif; 
} 

#quem-confia-na-humanlog > div { 
    max-width: 1300px; 
    margin: 0 auto; 
    text-align: center; 
} 

#quem-confia-na-humanlog h2 { 
    color: white; 
    font-size: 2.8rem; 
    margin-bottom: 25px; 
} 

#quem-confia-na-humanlog p { 
    color: black; 
    font-size: 3.0rem; 
    margin-bottom: 35px; 
} 

#quem-confia-na-humanlog > div > div { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; 
} 

#quem-confia-na-humanlog img { 
    height: 145px; 
    filter: grayscale(0.5); 
    transition: filter 0.3s; 
    cursor: pointer; 
} 

#quem-confia-na-humanlog img:hover { 
    filter: grayscale(0); 
} 

#quem-confia-na-humanlog blockquote { 
    margin-top: 40px; 
    font-style: italic; 
    color: black; 
    font-size: 1.5rem; 
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto; 
} 

/* Planos e Preços */ 
#planos-e-precos { 
    padding: 20px 20px; 
    background: white; 
    font-family: Arial, sans-serif; 
} 

#planos-e-precos > div { 
    max-width: 1300px; 
    margin: 0 auto; 
    text-align: center; 
} 

#planos-e-precos h2 { 
    color: black; 
    font-size: 3.5rem; 
    margin-bottom: 15px; 
} 

#planos-e-precos p { 
    color: black; 
    font-size: 1.5rem; 
    margin-bottom: 40px; 
} 

#planos-e-precos > div > div { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; 
} 

#planos-e-precos > div > div > div { 
    background: #6a0dad; 
    padding: 20px 15px; 
    border-radius: 12px; 
    box-shadow: none !important; 
    width: 200px; 
} 

#planos-e-precos h3 { 
    color: black; 
    margin-bottom: 12px; 
} 

#planos-e-precos p { 
    font-weight: bold; 
    font-size: 2.0rem; 
    color: black; 
    margin-bottom: 20px; 
} 

#planos-e-precos ul { 
    list-style: none; 
    padding: 0; 
    color: #555; 
    font-size: 1rem; 
    text-align: center; 
} 

#planos-e-precos ul li { 
    margin-bottom: 8px; 
} 

/* Quem Atendemos */ 
#quem-atendemos { 
    padding: 20px 20px; 
    background: #6a0dad; 
    font-family: Arial, sans-serif; 
} 

#quem-atendemos > div { 
    max-width: 1300px; 
    margin: 0 auto; 
    text-align: center; 
} 

#quem-atendemos h2 { 
    color: white; 
    font-size: 3.5rem; 
    margin-bottom: 20px; 
} 

#quem-atendemos p { 
    color: #444; 
    font-size: 3rem; 
    margin-bottom: 40px; 
} 

#quem-atendemos > div > div { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; 
} 

#quem-atendemos > div > div > div { 
    background: white; 
    padding: 15px 10px; 
    border-radius: 12px; 
    box-shadow: none !important; 
    width: 260px; 
} 

#quem-atendemos h3 { 
    color: white; 
    margin-bottom: 10px; 
} 

#quem-atendemos p { 
    color: white; 
    font-size: 1.5rem; 
} 

/* Regiões Atendidas */ 
#regioes-atendidas { 
    padding: 5px 20px; 
    background: white; 
    font-family: Arial, sans-serif; 
} 

#regioes-atendidas > div { 
    max-width: 900px; 
    margin: 0 auto; 
    text-align: center; 
} 

#regioes-atendidas h2 { 
    color: black; 
    font-size: 3.5rem; 
    margin-bottom: 20px; 
} 

#regioes-atendidas p { 
    color: black; 
    font-size: 2.0rem; 
    margin-bottom: 30px; 
} 

#regioes-atendidas img { 
    max-width: 100%; 
    height: auto; 
    border-radius: 12px; 
    box-shadow: none !important; 
} 

/* Baixe Nosso App */ 
#baixe-nosso-app { 
    padding: 50px 20px; 
    background: #1a237e; 
    color: white; 
    font-family: Arial, sans-serif; 
    text-align: center; 
} 

#baixe-nosso-app > div { 
    max-width: 1500px; 
    margin: 0 auto; 
} 

#baixe-nosso-app h2 { 
    font-size: 3.5rem; 
    margin-bottom: 15px; 
} 

#baixe-nosso-app p { 
    font-size: 2.4rem; 
    margin-bottom: 35px; 
} 

/* Regras para alinhar os botões */ 
#baixe-nosso-app a { 
    display: inline-block; 
} 

#baixe-nosso-app img { 
    height: 60px; 
    cursor: pointer; 
    border-radius: 12px; 
    padding: 5px; 
} 

/* Aplica uma largura específica APENAS para o botão da App Store */ 
#baixe-nosso-app a:last-child img { 
    width: 160px; 
} 

/* Estilos para Veículos (Desktop) */ 
.veiculos-container { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; 
    padding: 20px; 
} 

.veiculo-card { 
    background: #fff; 
    border: none !important; 
    border-radius: 12px; 
    padding: 15px; 
    margin-bottom: 20px; 
    text-align: center; 
    transition: transform 0.2s; 
} 

.veiculo-card img { 
    width: 100%; 
    max-width: 100%; 
    height: auto; 
    margin-bottom: 10px; 
    display: block; 
    margin: 0 auto; 
} 

.veiculo-card p { 
    font-weight: bold; 
    color: #5e2ca5; 
} 

.veiculo-card small { 
    color: #888; 
} 

.veiculo-card:hover { 
    transform: scale(1.03); 
} 

.veiculo-card .info { 
    display: none; 
    text-align: left; 
    font-size: 14px; 
    margin-top: 10px; 
    background: #f9f9f9; 
    padding: 10px; 
    border-radius: 8px; 
} 

.toggle-btn { 
    background: #f0f0f0; 
    border: none !important; 
    padding: 5px 10px; 
    border-radius: 5px; 
    cursor: pointer; 
    margin-top: 10px; 
    font-weight: bold; 
    color: #5a00a2; 
} 

/* RESPONSIVO */ 
@media (max-width: 900px) { 
    /* Esconde a navegação padrão */ 
    nav { 
        display: none; 
        flex-direction: column; 
        width: 100% !important; 
        background-color: #1a237e; 
        position: absolute; 
        top: 60px; 
        left: 0; 
        padding: 10px 0; 
    } 
    

    nav.active { 
        display: flex; 
    } 
    
    nav a { 
        padding: 15px 20px; 
        margin: 0 !important; 
        border-top: none !important; 
    } 
    
    .cta { 
        margin-left: 0; 
    } 
    
    /* Mostra o menu-toggle em telas menores */ 
    .menu-toggle { 
        display: flex; 
        background-color: #1a237e; 
        padding: 0px; 
        border-radius: 0px !important; 
        height: 40px; 
        width: 100px !important; 
    } 
    
    .menu-toggle.active span:nth-child(1) { 
        transform:
