.partner-cta-section {
    height: 800px; /* Sua altura desejada */
    position: relative;
    background-image: url('../img/parceiros.png'); /* Sua imagem 1024x1024 */
    background-size: cover;
    background-position: top 25%; /* Ajuste para o melhor enquadramento */
    background-repeat: no-repeat;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* --- NOVO: Adicione estas propriedades de volta aqui --- */
    color: white; /* Equivale a text-white */
    text-align: center; /* Equivale a text-center */
    /* --------------------------------------------------- */
}

/* O restante do seu CSS para .partner-cta-section::before, .container, etc., permanece o mesmo */
.partner-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.partner-cta-section .container {
    position: relative;
    z-index: 10;
    padding: 0 15px; /* Mantém um padding horizontal para responsividade */
}

.partner-cta-section .btn-lg {
    padding: 15px 40px;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.partner-cta-section .btn-lg:hover {
    background-color: transparent;
    color: white;
}

/* Media Query: Ajustes para telas menores */
@media (max-width: 768px) {
    .partner-cta-section {
        height: 550px;
        background-position: top 35%; /* Ajuste para mobile */
    }
}

