.header {
    background-color: #00000070;
    text-align: center;
    padding: 20px;
    width: 100%;
    position: absolute;
}
.header h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}
.header p {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}
.content {
    background-image: url('../imagens/bg.png');
    background-size: cover;
    background-position: center center;
    min-height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;

}
.logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 70px;
    padding: 20px;
}
.logo-img {
    /* flex-grow: 1; */
    max-width: 300px;
    margin: 10px;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .logos {
        flex-direction: column;
    }
    .logo-img {
        max-width: 160px;
        margin-top: 120px;
        margin-bottom: 120px;
    }
    .header p {
        color: #fff;
        font-size: 1rem;
        margin: 0;
    }
}