.hero-missao-impacto {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px; 
    position: relative;
    overflow: hidden;
}

.hero-missao-impacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(0, 51, 102, 0.8), 
        rgba(77, 124, 158, 0.8)
    );
    z-index: 1;
}

.hero-missao-impacto .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 15px;
    color: var(--white);
}

.hero-missao-impacto .hero-title {
    font-size: 1.5rem; 
    font-weight: 800;
    letter-spacing: 2px; 
    text-transform: uppercase;
    margin-bottom: 5px; 
    color: var(--white);
}

.hero-missao-impacto .hero-subtitle {
    font-size: 0.8rem; 
    font-weight: 300;
    letter-spacing: 1.5px;
    opacity: 0.9;
    text-transform: uppercase;
}

.hero-missao-impacto .hero-divider {
    width: 40px; 
    height: 3px;
    background-color: var(--gold);
    margin: 5px auto; 
}

@media (max-width: 768px) {
    .hero-missao-impacto {
        min-height: 100px; 
    }

    .hero-missao-impacto .hero-title {
        font-size: 1.2rem;
    }

    .hero-missao-impacto .hero-subtitle {
        font-size: 0.7rem;
    }
}