/* HERO SECTION - DIVENTA SOCIO */
.join-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            var(--primary-white) 0%,
            var(--light-gray) 50%,
            var(--magenta-ultra-light) 100%);
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.join-hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: var(--gradient-magenta);
    opacity: 0.1;
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.join-hero::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--gradient-magenta);
    opacity: 0.1;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

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

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

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-word {
    display: block;
    color: var(--text-primary);
}

.hero-word-accent {
    display: block;
    background: var(--gradient-magenta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-word-accent::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--gradient-magenta);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(199, 21, 133, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .join-hero {
        min-height: 60vh;
        padding: 6rem 2rem 3rem;
    }

    .hero-icon {
        width: 100px;
        height: 100px;
    }

    .hero-icon i {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .join-hero {
        min-height: 50vh;
        padding: 5rem 1.5rem 2.5rem;
    }

    .hero-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

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

    .hero-word-accent::after {
        width: 150px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .join-hero {
        padding: 4rem 1rem 2rem;
    }

    .hero-icon {
        width: 70px;
        height: 70px;
    }

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

    .hero-word-accent::after {
        width: 120px;
        height: 3px;
    }
}