.vm_headeroverlay {
    position: relative;
    width: 100%;
}

.vm_cover {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center center;
    background-image: url("../images/area-formacao1.jpg"); /* Move background image here */
}

.vm_overlay {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5); /* Adjust the color and opacity of the overlay */
    z-index: 1;
}

.vm_desc {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 2;
    color: #fff;
    transform: translateY(-50%);
    text-align: center;
}

.vm_desc h2 {
    font-size: 60px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff; /* Adjust text color */
}

.vm_desc span {
    display: block;
    margin-bottom: 30px;
    font-size: 28px;
    letter-spacing: 1px;
    color: #fff; /* Adjust text color */
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .vm_cover {
        height: 250px;
    }

    .vm_desc h2 {
        font-size: 30px;
    }

    .vm_desc span {
        font-size: 18px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .vm_cover {
        height: 300px;
    }

    .vm_desc h2 {
        font-size: 40px;
    }

    .vm_desc span {
        font-size: 22px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .vm_cover {
        height: 350px;
    }

    .vm_desc h2 {
        font-size: 50px;
    }

    .vm_desc span {
        font-size: 24px;
    }
}

@media (min-width: 993px) {
    .vm_cover {
        height: 400px;
    }

    .vm_desc h2 {
        font-size: 60px;
    }

    .vm_desc span {
        font-size: 28px;
    }
}

