/* ==========================================================================
   SUPREMACY HUB — PAGINA DE APOIADORES & PARCEIROS OFICIAIS
   Design Premium Redesenhado do Zero — 100% Responsivo e Intuitivo
   ========================================================================== */

/* Variáveis Locais e Configuração Base */
:root {
    --bg-dark: #07070a;
    --card-bg: #121318;
    --card-border: rgba(255, 255, 255, 0.06);
    --card-border-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    
    /* Cores de Identidade Oficial dos Parceiros */
    --color-discloud: #57F287;      /* Verde Malaquita Oficial */
    --color-mnn: #ef4444;           /* Vermelho Coral */
    --color-divulga: #3b82f6;       /* Azul Oficial */
    --color-divulgacoesgerais: #ff3344; /* Vermelho Intenso Oficial */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Corpo e Estrutura Principal */
.sponsors-body-wrapper {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* ==========================================================================
   1. HERO SECTION — CINEMATIC CONSTELLATION DESIGN
   ========================================================================== */

/* Animated gradient mesh background */
@keyframes heroMeshDrift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 0.8; }
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sponsors-hero-section {
    position: relative;
    padding: 10rem 2rem 6rem 2rem;
    overflow: hidden;
    background: #07070a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Mesh gradient overlay — animated aurora */
.sponsors-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(87, 242, 135, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(88, 101, 242, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 70% 60% at 50% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    background-size: 200% 200%;
    animation: heroMeshDrift 20s ease infinite;
    pointer-events: none;
    z-index: 0;
}

/* Fine grid texture overlay */
.sponsors-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        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: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Main hero content wrapper */
.sponsors-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3.5rem;
}

/* Top badge pill */
.sponsors-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.4rem;
    background: rgba(88, 101, 242, 0.08);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.sponsors-hero-badge i {
    color: #818cf8;
    font-size: 0.8rem;
}

/* Title with animated gradient */
.sponsors-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -2px;
    max-width: 750px;
}

.sponsors-hero-title .gradient-text {
    background: linear-gradient(90deg, #57F287, #5865F2, #8b5cf6, #57F287);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

.sponsors-hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
    max-width: 680px;
}

/* === CONSTELLATION: 4 orbiting partner orbs === */
.hero-constellation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1140px;
}

.hero-orb-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.hero-orb-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orb-color), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.hero-orb-card:hover::before {
    opacity: 1;
}

.hero-orb-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}

/* Floating orb sphere */
.hero-orb-sphere {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatOrb 4s ease-in-out infinite;
    position: relative;
}

.hero-orb-card:nth-child(1) { --orb-color: #57F287; }
.hero-orb-card:nth-child(2) { --orb-color: #ef4444; }
.hero-orb-card:nth-child(3) { --orb-color: #3b82f6; }
.hero-orb-card:nth-child(4) { --orb-color: #ff3344; }

.hero-orb-card:nth-child(2) .hero-orb-sphere { animation-delay: -1s; }
.hero-orb-card:nth-child(3) .hero-orb-sphere { animation-delay: -2s; }
.hero-orb-card:nth-child(4) .hero-orb-sphere { animation-delay: -3s; }

.hero-orb-sphere::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orb-color), transparent 70%);
    opacity: 0.15;
    animation: pulseGlow 3s ease-in-out infinite;
}

.hero-orb-sphere img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    position: relative;
    z-index: 1;
}

.hero-orb-sphere i {
    font-size: 1.6rem;
    color: var(--orb-color);
    position: relative;
    z-index: 1;
}

.hero-orb-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.3px;
}

.hero-orb-role {
    font-size: 0.78rem;
    color: var(--orb-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-orb-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.55;
    text-align: center;
}

/* Bottom CTA row */
.sponsors-hero-cta-wrap {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.hero-partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2.2rem;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.25);
}

.hero-partner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.35);
}

.hero-scroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.8rem;
    color: #94a3b8;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: transparent;
}

.hero-scroll-btn:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

/* ==========================================================================
   2. MAIN SHOWCASE CARDS (GRID ALTERNADO)
   ========================================================================== */
.sponsors-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.sponsors-showcase {
    display: flex;
    flex-direction: column;
    gap: 5rem; /* Espaçamento premium entre os painéis */
}

/* Sponsor Card */
.sponsor-card-block {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    overflow: hidden;
}

.sponsor-card-block:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
}

.sponsor-card-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

/* Left side details */
.sponsor-card-left {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.sponsor-brand-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.sponsor-brand-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.sponsor-brand-fallback-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.discloud .sponsor-brand-fallback-icon {
    background: rgba(87, 242, 135, 0.08);
    border: 1px solid rgba(87, 242, 135, 0.2);
    color: var(--color-discloud);
}

.mnn .sponsor-brand-fallback-icon {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--color-mnn);
}

.divulgatudo .sponsor-brand-fallback-icon {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--color-divulga);
}

.divulgacoesgerais .sponsor-brand-fallback-icon {
    background: rgba(255, 51, 68, 0.12);
    border: 1px solid rgba(255, 51, 68, 0.3);
    color: #ffffff;
}
.divulgacoesgerais .sponsor-brand-fallback-icon i {
    color: #ffffff;
}

.sponsor-brand-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0;
}

.sponsor-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.discloud .sponsor-brand-badge { color: var(--color-discloud); }
.mnn .sponsor-brand-badge { color: var(--color-mnn); }
.divulgatudo .sponsor-brand-badge { color: var(--color-divulga); }
.divulgacoesgerais .sponsor-brand-badge { color: var(--color-divulgacoesgerais); }

/* Descriptive long text */
.sponsor-brand-desc-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.sponsor-brand-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.sponsor-brand-text strong {
    color: white;
}

.sponsor-brand-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-sponsor-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

/* Discloud Buttons */
.btn-sponsor-action.dc-discord {
    background: rgba(87, 242, 135, 0.05);
    border: 1px solid rgba(87, 242, 135, 0.15);
    color: var(--color-discloud);
}
.btn-sponsor-action.dc-discord:hover {
    background: rgba(87, 242, 135, 0.1);
}
.btn-sponsor-action.dc-main {
    background: var(--color-discloud);
    color: #000000;
}
.btn-sponsor-action.dc-main:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* MNN Buttons */
.btn-sponsor-action.mnn-discord {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: var(--color-mnn);
}
.btn-sponsor-action.mnn-discord:hover {
    background: rgba(239, 68, 68, 0.1);
}
.btn-sponsor-action.mnn-main {
    background: var(--color-mnn);
    color: white;
}
.btn-sponsor-action.mnn-main:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* Divulga Tudo Buttons */
.btn-sponsor-action.dt-discord {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}
.btn-sponsor-action.dt-discord:hover {
    background: rgba(59, 130, 246, 0.1);
}
.btn-sponsor-action.dt-main {
    background: var(--color-divulga);
    color: white;
}
.btn-sponsor-action.dt-main:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* Divulgações Gerais Buttons */
.btn-sponsor-action.dg-discord {
    background: rgba(255, 51, 68, 0.05);
    border: 1px solid rgba(255, 51, 68, 0.15);
    color: #ff6b7a;
}
.btn-sponsor-action.dg-discord:hover {
    background: rgba(255, 51, 68, 0.1);
}
.btn-sponsor-action.dg-main {
    background: var(--color-divulgacoesgerais);
    color: white;
}
.btn-sponsor-action.dg-main:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* Brand footer tag */
.sponsor-brand-footer-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.2rem;
    margin-top: 1rem;
}

.sponsor-brand-footer-tag-img {
    height: 18px;
    opacity: 0.5;
}

/* Right side features/stats */
.sponsor-card-right {
    padding: 3.5rem;
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
}

.sponsor-features-header {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.8rem;
    margin: 0;
}

.sponsor-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.sponsor-feature-item-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.sponsor-feature-icon {
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.discloud .sponsor-feature-icon { color: var(--color-discloud); }
.mnn .sponsor-feature-icon { color: var(--color-mnn); }
.divulgatudo .sponsor-feature-icon { color: var(--color-divulga); }
.divulgacoesgerais .sponsor-feature-icon { color: var(--color-divulgacoesgerais); }

.sponsor-feature-texts {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sponsor-feature-title-item {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
}

.sponsor-feature-desc-item {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Callout highlights */
.sponsor-highlight-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: auto;
}

.discloud .sponsor-highlight-box {
    background: rgba(87, 242, 135, 0.04);
    border: 1px solid rgba(87, 242, 135, 0.1);
    color: var(--color-discloud);
}
.mnn .sponsor-highlight-box {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.1);
    color: #f87171;
}
.divulgatudo .sponsor-highlight-box {
    background: rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}
.divulgacoesgerais .sponsor-highlight-box {
    background: rgba(255, 51, 68, 0.04);
    border: 1px solid rgba(255, 51, 68, 0.1);
    color: #ff6b7a;
}

.sponsor-highlight-box i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sponsor-highlight-box span {
    color: #cbd5e1;
}

.sponsor-highlight-box strong {
    color: white;
}

/* ==========================================================================
   3. COMMUNITY PROJECTS SECTION
   ========================================================================== */
.community-grid-title-block {
    text-align: center;
    padding: 4rem 1.5rem 1.5rem;
}

.community-grid-title-block h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem;
}

.community-grid-title-block p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: 2rem;
    padding: 0 1.5rem 2rem;
}

/* Dynamic Project Cards */
.partner-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-3px);
}

.partner-card-banner {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.partner-card-banner-placeholder {
    width: 100%;
    height: 140px;
    background: var(--badge-color, #5865F2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.banner-initials {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
}

.partner-card-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-grow: 1;
}

.partner-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.partner-card-head img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-card-head h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.partner-card-head .tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--project-badge, #5865F2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.partner-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.partner-card-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
}

.btn-discord-sm, .btn-site-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    flex: 1;
}

.btn-discord-sm {
    background: rgba(88, 101, 242, 0.06);
    border: 1px solid rgba(88, 101, 242, 0.15);
    color: #7983f5;
}

.btn-discord-sm:hover {
    background: rgba(88, 101, 242, 0.12);
}

.btn-site-sm {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
}

.btn-site-sm:hover {
    background: rgba(255, 255, 255, 0.08);
}

.grid-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
}

.grid-state i {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.grid-state h3 {
    color: white;
    font-size: 1.1rem;
    margin: 0 0 0.3rem;
}

/* ==========================================================================
   4. CTA SECTION
   ========================================================================== */
.cta-block-section {
    padding: 4rem 0 6rem;
}

.cta-block-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.cta-block-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid rgba(88, 101, 242, 0.15);
    border-radius: 24px;
    padding: 4.5rem 3rem;
    text-align: center;
    overflow: hidden;
}

.cta-block-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    background: rgba(88, 101, 242, 0.08);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 50px;
    color: #7983f5;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.cta-block-card h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.cta-block-card h2 .highlight {
    background: linear-gradient(135deg, #ffffff 30%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-block-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-block-benefits {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-block-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.cta-block-benefit i {
    color: #5865F2;
}

.cta-block-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 2.8rem;
    background: #5865F2;
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-block-btn:hover {
    background: #4752C4;
    transform: translateY(-1px);
}

.cta-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cta-stat-block {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.cta-stat-block:hover {
    border-color: var(--card-border-hover);
}

.cta-stat-icon-wrap {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.cta-stat-block h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.3rem;
}

.cta-stat-block span {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ==========================================================================
   5. RESPONSIVE MEDIA QUERIES (MOBILE OPTIMIZED)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-constellation {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .sponsor-card-layout {
        grid-template-columns: 1fr;
    }
    
    .sponsor-card-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        padding: 2.5rem;
    }
    
    .sponsor-card-right {
        padding: 2.5rem;
    }
    
    .sponsors-hero-title {
        font-size: 3rem;
    }
    
    .cta-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-constellation {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .sponsors-hero-title {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }
}

@media (max-width: 640px) {
    .sponsors-hero-section {
        padding: 8rem 1rem 4rem 1rem;
    }
    
    .sponsors-hero-title {
        font-size: 2.1rem;
    }
    
    .sponsors-hero-desc {
        font-size: 0.95rem;
    }
    
    .sponsors-hero-cta-wrap {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    
    .hero-partner-btn,
    .hero-scroll-btn {
        width: 100%;
        justify-content: center;
    }

    .sponsor-card-left {
        padding: 1.8rem;
        gap: 1.5rem;
    }
    
    .sponsor-brand-title {
        font-size: 1.5rem;
    }
    
    .sponsor-brand-text {
        font-size: 0.95rem;
    }
    
    .sponsor-brand-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-sponsor-action {
        width: 100%;
        justify-content: center;
    }
    
    .sponsor-card-right {
        padding: 1.8rem;
        gap: 2rem;
    }
    
    .cta-block-card {
        padding: 3rem 1.5rem;
    }
    
    .cta-block-card h2 {
        font-size: 1.8rem;
    }
    
    .cta-block-benefits {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .cta-block-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
}
