/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores baseadas no logotipo */
    --primary-blue: #00b4d8;
    --primary-orange: #ff6b35;
    --dark-blue: #0077b6;
    --dark-orange: #e63946;
    --light-blue: #90e0ef;
    --light-orange: #ffb3ba;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2d2d2d;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    
    /* Gradientes */
    --gradient-blue: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    --gradient-orange: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    --gradient-hero: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    
    /* Fontes */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Arial', sans-serif;
    
    /* Sombras */
    --shadow-glow: 0 0 20px rgba(0, 180, 216, 0.3);
    --shadow-glow-orange: 0 0 20px rgba(255, 107, 53, 0.3);
    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.3);
}

body {
    font-family: var(--font-secondary);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo .logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.nav-logo .logo:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 10px var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-hero);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.discord-btn {
    background: var(--gradient-orange) !important;
    border-radius: 25px !important;
    padding: 0.8rem 2rem !important;
    box-shadow: var(--shadow-glow-orange) !important;
    animation: pulse 2s infinite;
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

@keyframes pulse {
    0% { box-shadow: var(--shadow-glow-orange); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.6); }
    100% { box-shadow: var(--shadow-glow-orange); }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(0, 180, 216, 0.1) 0%, var(--black) 70%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--primary-blue), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--primary-orange), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--light-blue), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--light-orange), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: particles 20s linear infinite;
}

@keyframes particles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    margin-bottom: 2rem;
}

.main-logo {
    height: 200px;
    filter: drop-shadow(0 0 20px rgba(0, 180, 216, 0.5));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 20px rgba(0, 180, 216, 0.5)); }
    100% { filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5)); }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 180, 216, 0.5);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 30px rgba(0, 180, 216, 0.5); }
    100% { text-shadow: 0 0 40px rgba(255, 107, 53, 0.5); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 180, 216, 0.4);
}

.btn-discord {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: var(--shadow-glow-orange);
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.4);
}

/* Seções */
.info-section, .links-section {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-hero);
    border-radius: 2px;
}

/* Cards de Informação */
.info-card {
    background: rgba(45, 45, 45, 0.8);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: var(--gradient-hero);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.card-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.card-title.rates {
    color: var(--primary-blue);
    text-shadow: 0 0 10px var(--primary-blue);
}

.card-title.dynamics {
    color: var(--primary-orange);
    text-shadow: 0 0 10px var(--primary-orange);
}

.card-title.war {
    color: var(--dark-orange);
    text-shadow: 0 0 10px var(--dark-orange);
}

.card-title.commands {
    color: var(--light-blue);
    text-shadow: 0 0 10px var(--light-blue);
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-list li:hover {
    color: var(--primary-blue);
    padding-left: 1.5rem;
    text-shadow: 0 0 5px var(--primary-blue);
}

.info-list li:hover::before {
    opacity: 1;
}

.info-list li:last-child {
    border-bottom: none;
}

/* Seção de Links */
.links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.link-card {
    background: rgba(45, 45, 45, 0.8);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    backdrop-filter: blur(10px);
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: var(--gradient-hero);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-card:hover::before {
    opacity: 1;
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.link-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.link-icon::before {
    content: '';
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
}

.discord-icon {
    background: linear-gradient(135deg, #7289da, #5865f2);
    box-shadow: 0 0 20px rgba(114, 137, 218, 0.3);
}

.discord-icon::before {
    background: #ffffff;
    border-radius: 50%;
    box-shadow: inset 0 0 0 8px #7289da;
}

.discord-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    bottom: 15px;
    right: 15px;
    box-shadow: inset 0 0 0 3px #7289da;
}

.facebook-icon {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.3);
}

.facebook-icon::before {
    background: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 3px;
}

.facebook-icon::after {
    content: 'f';
    position: absolute;
    color: #1877f2;
    font-size: 24px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon::before {
    background: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: relative;
}

.whatsapp-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #25d366;
    border-radius: 50%;
    bottom: 10px;
    right: 10px;
    box-shadow: inset 0 0 0 2px #ffffff;
}

.link-card:hover .link-icon {
    transform: scale(1.1) rotate(5deg);
}

.link-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.link-card p {
    color: var(--light-gray);
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 3rem 0;
    border-top: 2px solid var(--primary-blue);
    box-shadow: 0 -5px 20px rgba(0, 180, 216, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 180, 216, 0.3));
}

.footer p {
    color: var(--light-gray);
    opacity: 0.7;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }
    
    .main-logo {
        height: 150px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .info-card {
        padding: 1rem;
    }
}
