/* Hero com a primeira imagem */
.hero-section {
    position: relative;
    background: url('image_d4c464.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Efeito parallax suave */
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    z-index: 1;
}

/* Seção de transição com a segunda imagem */
.community-divider {
    background: url('image_d4c3e9.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-content { position: relative; z-index: 2; }