/* style.css - TEMA PREMIUM COM MASCOTE ROXY */
:root {
    --primary: #0066cc;
    --primary-dark: #004080;
    --primary-light: #3399ff;
    --accent: #00e5ff;
    --accent-glow: #00e5ff;
    --gold: #ffd700;
    --gold-glow: #ffed4e;
    --ruby: #ff4757;
    --ruby-glow: #ff6b81;
    --emerald: #00d2a8;
    --emerald-glow: #00f5c4;
    --text-light: #ffffff;
    --text-muted: #b3e0ff;
    --bg-dark: #0a0f1c;
    --bg-card: linear-gradient(145deg, rgba(16, 42, 87, 0.8) 0%, rgba(8, 25, 55, 0.9) 100%);
    --border: rgba(0, 229, 255, 0.3);
    --shadow: 0 20px 40px rgba(0, 102, 204, 0.25);
    --glow: 0 0 20px rgba(0, 229, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, sans-serif;
    background: 
        radial-gradient(ellipse at top, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
        linear-gradient(165deg, var(--bg-dark) 0%, #0d1a33 30%, #10274d 70%, #1a3a6b 100%);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Efeito de partículas premium */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

.particle:nth-child(odd) {
    background: rgba(0, 229, 255, 0.15);
    box-shadow: 0 0 15px var(--accent-glow);
}

.particle:nth-child(even) {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 10px var(--gold-glow);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    33% { 
        transform: translateY(-20px) rotate(120deg);
        opacity: 1;
    }
    66% { 
        transform: translateY(-10px) rotate(240deg);
        opacity: 0.8;
    }
}

/* HEADER PREMIUM CENTRALIZADO */
.header {
    padding: 0.8rem 1rem;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Logo com efeito brilhante */
.logo-section {
    text-align: center;
    position: relative;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.6;
}

.subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Menu compacto premium */
.quick-menu {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem;
    background: rgba(16, 42, 87, 0.3);
    border-radius: 16px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.menu-btn {
    background: linear-gradient(145deg, rgba(0, 102, 204, 0.3) 0%, rgba(0, 229, 255, 0.1) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.menu-btn:hover::before {
    left: 100%;
}

.menu-btn:hover {
    background: linear-gradient(145deg, rgba(0, 102, 204, 0.5) 0%, rgba(0, 229, 255, 0.2) 100%);
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: var(--glow);
}

.menu-btn i {
    font-size: 0.8rem;
    filter: drop-shadow(0 0 5px currentColor);
}

/* CONTAINER PRINCIPAL */
.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* CARD PRINCIPAL - COM MASCOTE ROXY */
.hero-section {
    margin-bottom: 2.5rem;
}

.partnership-card.featured {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 
        var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        var(--glow);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partnership-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 229, 255, 0.1), 
        transparent);
    transition: left 0.8s ease;
}

.partnership-card.featured:hover::before {
    left: 100%;
}

.partnership-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 102, 204, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 40px rgba(0, 229, 255, 0.6);
}

/* Container do mascote e conteúdo */
.partnership-content {
    position: relative;
    z-index: 2;
}

.roxy-mascote {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    padding: 4px;
    box-shadow: 
        0 0 30px rgba(0, 229, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: mascoteFloat 3s ease-in-out infinite;
    position: relative;
}

.roxy-mascote::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 50%, var(--primary) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

.roxy-mascote img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

@keyframes mascoteFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.partnership-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.partnership-header .fa-crown {
    color: var(--gold);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px var(--gold-glow));
    animation: crownPulse 2s ease-in-out infinite alternate;
}

@keyframes crownPulse {
    0% { transform: scale(1) rotate(-5deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

.badge {
    background: linear-gradient(135deg, var(--gold) 0%, #ffa500 100%);
    color: var(--primary-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partnership-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}

.partnership-description {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.coupon {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.9) 0%, 
        rgba(255, 165, 0, 0.9) 100%);
    color: var(--primary-dark);
    padding: 1rem 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.coupon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.coupon:hover::before {
    left: 100%;
}

.coupon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* BOTÕES PREMIUM */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #ffa500 50%, #ff8c00 100%);
    color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4);
}

.btn-donation {
    background: linear-gradient(135deg, var(--ruby) 0%, #ff3742 50%, #ff1e36 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 10px 30px rgba(255, 71, 87, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    margin-bottom: 0.8rem;
}

.btn-donation:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(255, 71, 87, 0.6),
        0 0 30px rgba(255, 71, 87, 0.4);
}

/* SEÇÃO DE DOAÇÕES PREMIUM */
.donation-section {
    margin-bottom: 2.5rem;
}

.donation-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 
        var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.donation-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 71, 87, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.donation-card:hover::before {
    opacity: 1;
}

.donation-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 25px 50px rgba(255, 71, 87, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 71, 87, 0.4);
}

.donation-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.donation-header .fa-heart {
    color: var(--ruby);
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--ruby-glow));
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.05); }
}

.donation-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--ruby) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.donation-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 400;
}

.donation-card small {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

/* OUTRAS PARCERIAS */
.other-partnerships {
    margin-bottom: 2.5rem;
}

.other-partnerships h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.partnership-btn {
    background: var(--bg-card);
    backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1.2rem;
    text-decoration: none;
    color: var(--text-light);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.partnership-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 229, 255, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.partnership-btn:hover::before {
    left: 100%;
}

.partnership-btn:hover {
    background: rgba(0, 102, 204, 0.3);
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: var(--glow);
}

/* REDES SOCIAIS PREMIUM */
.social-section {
    margin-bottom: 2.5rem;
}

.social-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 320px;
    margin: 0 auto;
}

.social-link {
    background: var(--bg-card);
    backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem 0.5rem;
    text-decoration: none;
    color: var(--text-light);
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 210, 168, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(0, 210, 168, 0.2);
    transform: translateY(-4px) scale(1.1);
    border-color: var(--emerald);
    box-shadow: 0 0 25px rgba(0, 210, 168, 0.4);
}

/* COMUNIDADES DISCORD PREMIUM */
.communities-section {
    margin-bottom: 2.5rem;
}

.communities-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-light) 0%, #5865f2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.communities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.community-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(88, 101, 242, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.community-card:hover::before {
    left: 100%;
}

.community-card:hover {
    background: rgba(88, 101, 242, 0.2);
    transform: translateY(-3px);
    border-color: #5865f2;
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.4);
}

.community-card .fa-discord {
    font-size: 2.2rem;
    color: #5865f2;
    filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.5));
}

.community-card div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.community-card strong {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.community-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* FOOTER PREMIUM */
.footer {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    margin-top: 3rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* RESPONSIVIDADE PREMIUM */
@media (max-width: 768px) {
    .header {
        padding: 0.7rem 0.8rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .menu-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .container {
        padding: 1.5rem 0.8rem;
    }
    
    .partnership-card.featured {
        padding: 2rem 1.5rem;
    }
    
    .roxy-mascote {
        width: 100px;
        height: 100px;
    }
    
    .partnership-card h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 250px;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .quick-menu {
        gap: 0.4rem;
    }
    
    .menu-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.65rem;
    }
    
    .partnership-card.featured {
        padding: 1.5rem 1rem;
    }
    
    .roxy-mascote {
        width: 80px;
        height: 80px;
    }
    
    .partnership-card h2 {
        font-size: 1.3rem;
    }
    
    .coupon {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}