/* CTA SECTION - DIVENTA SOCIO */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-black);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,
            rgba(199, 21, 133, 0.2) 0%,
            transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-magenta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-magenta-strong);
}

.cta-icon i {
    font-size: 3rem;
    color: var(--text-on-magenta);
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.cta-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.cta-link:hover {
    background: var(--gradient-magenta);
    border-color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-magenta);
}

.cta-link i {
    font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .cta-section {
        padding: 4rem 1rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-icon {
        width: 90px;
        height: 90px;
    }

    .cta-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-contact {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-link {
        width: 100%;
        justify-content: center;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .cta-icon i {
        font-size: 2rem;
    }

    .cta-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-link i {
        font-size: 1rem;
    }
}