.section-background {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: red; /* Teste com cor sólida */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}