/* ==========================================================================
   1. CABEÇALHO (HERO)
   ========================================================================== */
.bg-hero {
    /* IMPORTANTE: Ajuste o caminho da imagem caso a pasta CSS esteja em um nível diferente */
    background-image: url('../Images/carro-eletrico.png'); 
    background-color: #000;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.6); 
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--verde-principal);
}

.hero h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
}

/* ==========================================================================
   2. BOTÕES GERAIS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--verde-principal);
    color: var(--texto-claro);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover { background-color: var(--verde-escuro); }

/* ==========================================================================
   3. RODAPÉ
   ========================================================================== */
.rodape {
    background-color: var(--fundo-escuro); 
    border-top: 4px solid var(--verde-principal);
    color: #d1d5db; 
    padding: 80px 10% 30px 10%;
}

.rodape-colunas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.rodape-colunas h4 {
    color: var(--texto-claro);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.rodape-colunas p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px; 
}

.rodape-colunas p i {
    color: var(--verde-principal);
    font-size: 1.2rem;
}

.redes-sociais {
    display: flex;
    gap: 15px;
}

.redes-sociais a {
    color: var(--texto-claro);
    background-color: rgba(255, 255, 255, 0.05); 
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.redes-sociais a:hover {
    background-color: var(--verde-principal);
    transform: translateY(-5px);
    color: var(--texto-claro);
    box-shadow: 0 5px 15px rgba(16, 163, 62, 0.4); 
}

.rodape-copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.85rem;
}