/* ========================================================================== */
/*           HERO PUSHIN PAY LUXURY REDESIGN (v3.0 — Jarvis & Sexta-Feira)    */
/* ========================================================================== */

#hero {
    position: relative;
    min-height: calc(100vh - var(--header-height, 80px));
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #070709;
    overflow: hidden;
    padding-top: calc(var(--header-height, 80px) + 1.2rem);
    padding-bottom: 0;
    box-sizing: border-box;
}

/* ── Studio Geometric Grid ─────────────────────────────────────────────────── */
.hero-studio-grid {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 28px 28px, 56px 56px, 56px 56px;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black 45%, transparent 95%);
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black 45%, transparent 95%);
}

/* ── Top Bar Badges (Pushin Pay Header Bar) ────────────────────────────────── */
.hero-top-bar {
    max-width: 100%;
    width: 100%;
    margin: 0 0 0.8rem 0;
    padding: 0 clamp(2.5rem, 5.5vw, 6.5rem);
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.hero-top-badges {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.74rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.hero-top-badge strong {
    color: #ffffff;
    font-weight: 800;
}

.badge-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10B981;
    flex-shrink: 0;
    animation: liveDotPulse 2s ease-in-out infinite;
}

@keyframes liveDotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.45;
        transform: scale(0.85);
    }
}

/* ── Main Split Container ─────────────────────────────────────────────────── */
.hero-container-split {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0.2rem clamp(2.5rem, 5.5vw, 6.5rem) 0 clamp(2.5rem, 5.5vw, 6.5rem);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: flex-end;
    gap: clamp(1.5rem, 2.5vw, 3.5rem);
    position: relative;
    z-index: 10;
    flex: 1;
    box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*                            LEFT COLUMN: CONTENT                            */
/* ═══════════════════════════════════════════════════════════════════════════ */

.hero-content-left {
    padding-right: 0.5rem;
    padding-bottom: 2.6rem;
    animation: heroFadeSlideUp 0.8s ease-out both;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: center;
    max-width: 720px;
}

@keyframes heroFadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Headline ──────────────────────────────────────────────────────────────── */
.hero-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.6rem, 3.8vw, 4.2rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.3rem;
    color: #ffffff;
    letter-spacing: -0.035em;
    max-width: 700px;
}

.hero-headline-accent {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 45%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Subtext ───────────────────────────────────────────────────────────────── */
.hero-subtext {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2.2rem;
    max-width: 600px;
    font-weight: 400;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.hero-btn-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.4rem;
    flex-wrap: wrap;
}

.btn-modern-primary {
    background: #ffffff;
    color: #09090b;
    padding: 0.95rem 1.85rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.12);
}

.btn-modern-primary i {
    font-size: 0.95rem;
    color: #09090b;
}

.btn-modern-primary:hover {
    background: #f4f4f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-modern-outline {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    padding: 0.95rem 1.85rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    text-decoration: none;
}

.btn-modern-outline i {
    font-size: 0.95rem;
    color: #94a3b8;
}

.btn-modern-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #ffffff;
}

/* ── Community Proof: Social Avatars ──────────────────────────────────────── */
.hero-community-proof {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 0.75rem 1.15rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    width: fit-content;
    max-width: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-sizing: border-box;
}

.proof-avatars-wrapper {
    width: 130px;
    overflow: hidden;
    position: relative;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.proof-avatars-marquee {
    display: flex;
    animation: scroll-avatars linear infinite;
    gap: 5px;
}

@keyframes scroll-avatars {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.proof-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    border: 2px solid #070709;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    background-color: #18181b;
}

.proof-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: left;
}

.proof-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.proof-subtitle {
    font-size: 0.73rem;
    color: #64748b;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*                 RIGHT COLUMN: JARVIS & SEXTA-FEIRA 3D STAGE                */
/* ═══════════════════════════════════════════════════════════════════════════ */

.hero-visual-right {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
    perspective: 1200px;
    align-self: flex-end;
    margin-bottom: 0;
    padding-bottom: 0;
    animation: heroFadeSlideUp 1s ease-out 0.2s both;
}

.hero-character-stage {
    position: relative;
    width: 100%;
    max-width: 650px;
    min-height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 0 auto 0 0;
    transform: translateX(clamp(-65px, -4vw, -20px));
}

/* ── Typography Watermark Behind Characters ────────────────────────────────── */
.hero-watermark-text {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(4.5rem, 7.8vw, 8rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.025);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ── 3D Card with Jarvis & Sexta-Feira ────────────────────────────────────── */
.hero-character-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
    will-change: transform;
    transition: transform 0.16s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-style: preserve-3d;
}

.hero-character-img {
    width: auto;
    max-width: 100%;
    max-height: clamp(580px, 48vw, 760px);
    object-fit: contain;
    object-position: bottom center;
    margin-bottom: -5px;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
    pointer-events: none;
    user-select: none;
}

/* ── Floating Character Pill Badge ────────────────────────────────────────── */
.hero-character-pill {
    position: absolute;
    bottom: 24px;
    right: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.1rem;
    border-radius: 9999px;
    background: rgba(13, 13, 17, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    user-select: none;
    transition: transform 0.25s ease;
}

.hero-character-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
}

.char-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #06b6d4;
    flex-shrink: 0;
    animation: liveDotPulse 2.5s ease-in-out infinite;
}

.char-pill-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    text-align: left;
}

.char-pill-name {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.char-pill-role {
    font-size: 0.62rem;
    font-weight: 500;
    color: #94a3b8;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*           BOTTOM PARTNERS: CONTINUOUS SEAMLESS MARQUEE (INFINITE LOOP)      */
/* ═══════════════════════════════════════════════════════════════════════════ */

.hero-partners-marquee-bar {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(8, 8, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.15rem 0;
    position: relative;
    z-index: 10;
    margin-top: auto;
    overflow: hidden;
    box-sizing: border-box;
}

.partners-marquee-track {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 2.8rem;
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.partners-marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2.8rem;
    min-width: 100%;
    animation: heroInfiniteScroll 35s linear infinite;
}

.partners-marquee-track:hover .partners-marquee-group {
    animation-play-state: paused;
}

@keyframes heroInfiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 2.8rem));
    }
}

.partner-item {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.04em;
    transition: color 0.25s ease, transform 0.2s ease;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.partner-item i {
    font-size: 1.05rem;
    transition: color 0.25s ease, transform 0.2s ease;
}

/* ── Brand Specific Colors (Mesmas cores oficiais da página de Patrocinadores) ── */
.partner-discloud i {
    color: #57F287;
}
.partner-discloud:hover {
    color: #ffffff;
}
.partner-discloud:hover i {
    color: #57F287;
    transform: scale(1.15);
}

.partner-mnn i {
    color: #ef4444;
}
.partner-mnn:hover {
    color: #ffffff;
}
.partner-mnn:hover i {
    color: #ef4444;
    transform: scale(1.15);
}

.partner-divulga i {
    color: #3b82f6;
}
.partner-divulga:hover {
    color: #ffffff;
}
.partner-divulga:hover i {
    color: #60a5fa;
    transform: scale(1.15);
}

.partner-divulgacoesgerais i {
    color: #ff3344;
}
.partner-divulgacoesgerais:hover {
    color: #ffffff;
}
.partner-divulgacoesgerais:hover i {
    color: #ff3344;
    transform: scale(1.15);
}

.partner-item-sep {
    color: rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
    user-select: none;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*                              RESPONSIVITY                                  */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* ── 4K & ULTRA-WIDE SCREENS (2000px+) ─────────────────────────────────────── */
@media (min-width: 2000px) {
    #hero {
        padding-top: calc(var(--header-height, 100px) + 2.5rem);
    }

    .hero-top-bar {
        max-width: 100%;
        padding: 0 3.5rem;
        margin-bottom: 2.2rem;
    }

    .hero-top-badge {
        font-size: 1.2rem;
        padding: 0.75rem 1.8rem;
        gap: 1rem;
    }

    .badge-live-dot {
        width: 13px;
        height: 13px;
    }

    .hero-container-split {
        max-width: 100%;
        padding: 0.5rem 3.5rem 0 3.5rem;
        gap: 5rem;
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    }

    .hero-content-left {
        max-width: 1400px;
        padding-bottom: 6rem;
    }

    .hero-headline {
        font-size: clamp(4.8rem, 4.8vw, 7.5rem);
        max-width: 1400px;
        margin-bottom: 2.5rem;
        line-height: 1.06;
    }

    .hero-subtext {
        font-size: 1.65rem;
        max-width: 1100px;
        line-height: 1.8;
        margin-bottom: 4rem;
    }

    .hero-btn-row {
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .specular-button--lg {
        font-size: 1.45rem;
        padding: 24px 56px;
        --sb-radius: 22px;
    }

    .specular-button__label i {
        font-size: 1.45rem;
    }

    .hero-community-proof {
        padding: 1.4rem 2.2rem;
        border-radius: 24px;
        gap: 1.8rem;
    }

    .proof-avatars-wrapper {
        width: 240px;
    }

    .proof-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .proof-title {
        font-size: 1.45rem;
    }

    .proof-subtitle {
        font-size: 1.15rem;
    }

    .hero-visual-right {
        padding-left: 0;
        padding-right: 0;
        justify-content: flex-start;
    }

    .hero-character-stage {
        max-width: 1100px;
        margin: 0 auto 0 0;
        transform: translateX(clamp(-90px, -4.5vw, -35px));
    }

    .hero-character-img {
        max-height: clamp(900px, 56vh, 1400px);
        margin-bottom: -6px;
    }

    .hero-watermark-text {
        font-size: clamp(8rem, 11vw, 14rem);
        letter-spacing: 0.12em;
    }

    .hero-character-pill {
        bottom: 45px;
        right: 45px;
        padding: 1.1rem 2rem;
        gap: 1.2rem;
        border-radius: 9999px;
    }

    .char-status-dot {
        width: 14px;
        height: 14px;
    }

    .char-pill-name {
        font-size: 1.15rem;
    }

    .char-pill-role {
        font-size: 0.95rem;
    }

    .hero-partners-marquee-bar {
        padding: 2.2rem 0;
    }

    .partner-item {
        font-size: 1.4rem;
        gap: 1rem;
    }

    .partner-item i {
        font-size: 1.65rem;
    }

    .partner-item-sep {
        font-size: 1.4rem;
    }
}

/* ── LAPTOPS & NOTEBOOKS (1025px - 1440px) ────────────────────────────────── */
@media (min-width: 1025px) and (max-width: 1440px) {
    #hero {
        min-height: calc(100vh - var(--header-height, 75px));
        padding-top: calc(var(--header-height, 75px) + 0.8rem);
    }

    .hero-top-bar {
        padding: 0 1.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-top-badge {
        font-size: 0.7rem;
        padding: 0.32rem 0.85rem;
    }

    .hero-container-split {
        padding: 0 1.75rem;
        gap: 1.5rem;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }

    .hero-content-left {
        padding-bottom: 1.8rem;
        max-width: 580px;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 3.1vw, 3.2rem);
        margin-bottom: 1rem;
        max-width: 580px;
    }

    .hero-subtext {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 1.6rem;
        max-width: 500px;
    }

    .hero-btn-row {
        gap: 0.85rem;
        margin-bottom: 1.8rem;
    }

    .specular-button--lg {
        font-size: 0.9rem;
        padding: 13px 26px;
    }

    .hero-community-proof {
        padding: 0.65rem 1rem;
        gap: 0.9rem;
    }

    .proof-avatar {
        width: 32px;
        height: 32px;
    }

    .proof-title {
        font-size: 0.8rem;
    }

    .proof-subtitle {
        font-size: 0.68rem;
    }

    .hero-visual-right {
        padding-left: 0;
        padding-right: 0;
        justify-content: flex-start;
    }

    .hero-character-stage {
        max-width: 480px;
        margin: 0 auto 0 0;
        transform: translateX(clamp(-40px, -2.5vw, -10px));
    }

    .hero-character-img {
        max-height: clamp(480px, 42vw, 560px);
        margin-bottom: -5px;
    }

    .hero-watermark-text {
        font-size: clamp(3.2rem, 5.5vw, 5rem);
        letter-spacing: 0.1em;
    }

    .hero-character-pill {
        bottom: 18px;
        right: 15px;
        padding: 0.5rem 0.9rem;
    }

    .char-pill-name {
        font-size: 0.68rem;
    }

    .char-pill-role {
        font-size: 0.58rem;
    }

    .hero-partners-marquee-bar {
        padding: 0.95rem 0;
    }

    .partner-item {
        font-size: 0.8rem;
    }
}

/* ── TABLETS & MOBILE (<= 1024px) ─────────────────────────────────────────── */
/* REGRA CRÍTICA: Personagens Jarvis & Sexta-Feira NÃO aparecem em tablet nem mobile */
@media (max-width: 1024px) {
    #hero {
        padding-top: calc(var(--header-height, 75px) + 1.5rem);
        min-height: auto;
        justify-content: flex-start;
    }

    .hero-top-bar {
        padding: 0 1.5rem;
        margin: 0 auto 1.5rem auto;
    }

    .hero-top-badges {
        justify-content: center;
        gap: 0.6rem;
    }

    .hero-container-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
        padding: 0.5rem 1.5rem 2.8rem 1.5rem;
        max-width: 680px;
        margin: 0 auto;
    }

    /* Ocultar completamente a área dos personagens no celular e tablet */
    .hero-visual-right {
        display: none !important;
    }

    .hero-content-left {
        align-items: center;
        text-align: center;
        padding: 0;
        max-width: 100%;
    }

    .hero-headline {
        font-size: clamp(2rem, 5.5vw, 3rem);
        max-width: 100%;
        margin-bottom: 1.2rem;
    }

    .hero-subtext {
        font-size: 1rem;
        max-width: 580px;
        margin: 0 auto 2.2rem auto;
        line-height: 1.65;
    }

    .hero-btn-row {
        justify-content: center;
        margin-bottom: 2.4rem;
        gap: 1rem;
    }

    .hero-community-proof {
        margin: 0 auto;
    }

    .hero-partners-marquee-bar {
        margin-top: 1rem;
        padding: 1rem 0;
    }
}

@media (max-width: 600px) {
    .hero-top-badge {
        font-size: 0.68rem;
        padding: 0.32rem 0.8rem;
    }

    .hero-headline {
        font-size: 2.1rem;
    }

    .hero-subtext {
        font-size: 0.92rem;
    }

    .hero-btn-row {
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
    }

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

    .hero-community-proof {
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 0.9rem 1rem;
    }

    .proof-info-wrap {
        text-align: center;
    }
}

/* ========================================================================== */
/*                       SUPERCOMUNIDADES SECTION                             */
/* ========================================================================== */

#super-communities {
    position: relative;
    padding: 2rem 5% 4rem 5%;
    background-color: #09090b;
    z-index: 10;
}

#super-communities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    display: none;
}

.sc-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sc-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sc-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffd700;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.sc-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.sc-header p {
    font-size: 1rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.sc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
    gap: 2rem;
}

.sc-card {
    background: rgba(20, 20, 25, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.sc-card:hover {
    transform: translateY(-5px);
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: none;
    background: rgba(20, 20, 25, 0.75);
}

.sc-banner-wrap {
    height: 120px;
    position: relative;
    overflow: hidden;
    background: #111;
}

.sc-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.sc-banner-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
}

.sc-logo-wrap {
    position: absolute;
    top: 85px;
    left: 20px;
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: #09090b;
    border: 3px solid #09090b;
    overflow: hidden;
    box-shadow: none;
}

.sc-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc-logo-fallback {
    width: 100%;
    height: 100%;
    background: #27272a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.sc-body {
    padding: 50px 20px 20px 20px;
}

.sc-badge-members {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #a855f7, #5865F2);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    box-shadow: none;
    z-index: 5;
}

.sc-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.sc-desc {
    font-size: 0.85rem;
    color: #a1a1aa;
    line-height: 1.6;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 1.5rem;
}

.sc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.sc-type {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--cor-primaria-light);
}

.sc-btn-join {
    background: rgba(88, 101, 242, 0.1);
    color: #818cf8;
    border: 1px solid rgba(88, 101, 242, 0.2);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sc-btn-join:hover {
    background: #5865F2;
    color: white;
    border-color: #5865F2;
}

@media (max-width: 768px) {
    .sc-header h2 {
        font-size: 2rem;
    }
    .sc-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================================================== */
/*               INDEX ONLY NEON & GLOW OVERRIDES (PROFESSIONAL FLAT)         */
/* ========================================================================== */

.home-page-body {
    background-color: #060608 !important;
    background-image: 
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 24px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 24px),
        radial-gradient(ellipse at 50% -20%, rgba(35, 35, 50, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse at 100% 100%, rgba(20, 25, 40, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 85% 85%, rgba(40, 40, 60, 0.15) 0%, transparent 40%) !important;
    background-size: 30px 30px, 30px 30px, 100% 100%, 100% 100%, 100% 100% !important;
    background-position: center center !important;
    background-attachment: fixed !important;
}

.home-page-body #hero, .home-page-body #super-communities, .home-page-body #supremacy-bot, .home-page-body #about-intro, .home-page-body #play {
    background: transparent !important;
}
.home-page-body #hero::before, .home-page-body #super-communities::before, .home-page-body #supremacy-bot::before, .home-page-body #about-intro::before, .home-page-body #play::before, .home-page-body #hero::after, .home-page-body .hero-bg-elements {
    display: none !important;
}

.home-page-body .hero-gradient-text, .home-page-body .hero-gradient-text-alt, .home-page-body .blue-glow, .home-page-body .green-glow, .home-page-body .gold-glow, .home-page-body .pink-glow, .home-page-body .brand-supremacy, .home-page-body .parceiro-name, .home-page-body .sc-name {
    text-shadow: none !important;
    filter: none !important;
}

.home-page-body .hero-gradient-text, .home-page-body .hero-gradient-text-alt {
    background: none !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    animation: none !important;
}

.home-page-body .hero-stats-card, .home-page-body .divulgatudo-sponsor-card, .home-page-body .discloud-sponsor-card, .home-page-body .mnn-sponsor-card, .home-page-body .avatar-glow, .home-page-body .vip-glow, .home-page-body .pilar-card, .home-page-body .pilar-icon, .home-page-body .feature-icon, .home-page-body .discord-btn-hero {
    box-shadow: none !important;
}

.home-page-body .parceiro-logo-img, .home-page-body .sc-logo-img, .home-page-body .avatar-glow {
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.home-page-body .hero-stats-card, .home-page-body .pilar-card {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.home-page-body .mnn-glow-orb, .home-page-body .discloud-glow-orb, .home-page-body .divulgatudo-glow-orb, .home-page-body .pilar-glow, .home-page-body .hero-bg-elements, .home-page-body .cinema-glow, .home-page-body .core-inner-glow, .home-page-body .hero-glow {
    display: none !important;
}



.home-page-body .chart-bar { background: rgba(255, 255, 255, 0.05) !important; }
.home-page-body .chart-bar.active { background: rgba(255, 255, 255, 0.2) !important; }
.home-page-body .hfc-wallet:hover .chart-bar { background: rgba(255, 255, 255, 0.08) !important; }
.home-page-body .hfc-wallet:hover .chart-bar.active { background: rgba(255, 255, 255, 0.3) !important; }

.home-page-body .hero-label {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #a1a1aa !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}


.home-page-body .btn-primary, .home-page-body .btn-hero, .home-page-body .btn-login, .home-page-body .feedback-fab, .home-page-body .discord-btn-hero {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #e4e4e7 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: none !important;
    text-shadow: none !important;
}
.home-page-body .btn-primary:hover, .home-page-body .btn-hero:hover, .home-page-body .btn-login:hover, .home-page-body .feedback-fab:hover, .home-page-body .discord-btn-hero:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}
.home-page-body .feedback-fab i, .home-page-body .btn-hero i { color: #e4e4e7 !important; }

.home-page-body .parceiro-tag img, .home-page-body .parceiro-tag svg, .home-page-body .parceiro-tag i {
    filter: grayscale(100%) !important;
    opacity: 0.8 !important;
}


