/* ============================================================
   CTA FINAL — IDEX Home
   Prefixo: .cta-*
   ============================================================ */

.cta {
    background: #232522;
    padding: 56px 54px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta__container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.cta__titulo {
    font-size: 42px;
    font-weight: 300;
    color: #0080ff;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
}

.cta__descricao {
    font-size: 16px;
    line-height: 20px;
    color: rgba(209, 209, 209, 0.9);
    margin: 0;
    max-width: 580px;
}

.cta__botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
    margin-top: 8px;
}

/* Variante outline para fundo escuro */
.btn--outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    min-height: 55px;
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.btn--outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 768px) {
    .cta {
        padding: 64px 20px;
    }

    .cta__titulo {
        font-size: 26px;
    }

    .cta__botoes {
        flex-direction: column;
        width: 100%;
    }

    .cta__btn {
        width: 100%;
        justify-content: center;
    }
}