/* ==========================================================================
   Sobre CTA — Banner de contato
   ========================================================================== */

.sobre-cta {
    background: var(--color-bg);
    padding: 0 var(--space-page-x) clamp(32px, 4vw, 64px);
}

/* ===== Banner ===== */

.sobre-cta__banner {
    position: relative;
    background: var(--color-button);
    border-radius: 24px;
    overflow: hidden;
    padding: var(--space-section) 0;
    max-width: 1008px;
    margin: 0 auto;
}

/* ===== Pattern ===== */

.sobre-cta__pattern {
    position: absolute;
    inset: 0;
    background: url('/assets/images/sobre/cta-pattern.webp') center / cover no-repeat;
    opacity: 0.3;
    pointer-events: none;
}

/* ===== Conteúdo ===== */

.sobre-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    padding: 0 clamp(64px, 8vw, 129px);
}

.sobre-cta__logo {
    width: 182px;
    height: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.sobre-cta__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 28px;
    line-height: 125%;
    letter-spacing: -1px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.sobre-cta__desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin-bottom: 24px;
}

/* ===== Actions ===== */

.sobre-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sobre-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: #252B37;
    padding: 10px 24px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    transition: var(--transition-base);
}

.sobre-cta__btn svg {
    width: 20px;
    height: 20px;
    color: var(--color-button);
    background: rgba(128, 142, 193, 0.15);
    border-radius: 50%;
    padding: 8px;
    box-sizing: content-box;
    transition: var(--transition-base);
}

.sobre-cta__btn:hover {
    background: #F0F0F0;
}

.sobre-cta__btn:hover svg {
    background: rgba(128, 142, 193, 0.25);
}

.sobre-cta__link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #FFFFFF;
    text-decoration: none;
    transition: var(--transition-fast);
}

.sobre-cta__link:hover {
    text-decoration: underline;
}

/* ===== Responsivo ===== */

@media (max-width: 768px) {
    .sobre-cta {
        padding: 0 24px 32px;
    }

    .sobre-cta__banner {
        padding: 48px 0;
        border-radius: 16px;
    }

    .sobre-cta__content {
        padding: 0 20px;
    }

    .sobre-cta__title {
        font-size: 22px;
    }

    .sobre-cta__desc {
        font-size: 14px;
    }

    .sobre-cta__logo {
        width: 140px;
    }
}
