/* SESSÃO CTA PADRÃO (GLOBAL) */
.cta-section {
    padding: 150px 15%;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: background-color 0.5s ease;
}

.cta-section .cta-split-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 3;
}

.cta-section .cta-left {
    flex: 1;
    text-align: left;
}

.cta-section .cta-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cta-section .noise-overlay {
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-size: 100px 100px;
    background-repeat: repeat;
    opacity: 0.04;
    mix-blend-mode: overlay;
    z-index: 1;
    pointer-events: none;
}

.cta-title {
    margin: 10px 0 20px !important;
}

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 992px) {
    .cta-section {
        padding: 150px 10% !important; 
    }

    .cta-section .cta-split-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .cta-section .cta-right {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .cta-section .cta-button {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
}