.cta-section {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
}

/* leve glow dourado de fundo */
.cta-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 180, 0, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* TEXTO */
.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
}

.cta-content p {
    margin-top: 20px;
    color: #bbb;
    font-size: 17px;
}

/* BOTÃO */
.btn-whatsapp {
    display: inline-block;
    margin-top: 35px;
    padding: 18px 40px;
    border-radius: 50px;
    background: linear-gradient(90deg, #1fae4b, #0c7c2c);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.25);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.35);
}

/* LOGO */
.cta-logo-wrapper {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-logo {
    width: 200px;
    opacity: 0.9;
    transition: 0.4s ease;
}

.cta-logo:hover {
    transform: scale(1.05);
}

/* ================= MOBILE ================= */

@media(max-width: 992px) {

    .cta-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 40px;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-logo {
        width: 150px;
    }

    .btn-whatsapp {
        margin-left: auto;
        margin-right: auto;
    }
}