* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6c63ff;
    --secondary-color: #4a44c7;
    --accent-color: #ff6b6b;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--dark-color);
    height: 100vh;
}

/* Canvas para partículas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(108, 99, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-brand {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Container Principal */
.main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: 100px;
}

.content-wrapper {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    color: var(--white);
}

/* Header Section */
.header-section {
    margin-bottom: 20px;
    text-align: center;
}

.logo-container {
    margin-bottom: 5px;
    display: inline-block;
}

.logo-img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(108, 99, 255, 0.8));
    transition: all 0.3s ease;
    animation: pulse 3s infinite;
}

.logo-img:hover {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 20px 40px rgba(108, 99, 255, 1));
}

@keyframes pulse {
    0% { filter: drop-shadow(0 15px 35px rgba(108, 99, 255, 0.8)); }
    50% { filter: drop-shadow(0 20px 45px rgba(108, 99, 255, 1)); }
    100% { filter: drop-shadow(0 15px 35px rgba(108, 99, 255, 0.8)); }
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 10px auto 0;
    line-height: 1.4;
}

/* Services Section */
.services-section {
    margin: 40px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Projects Section */
.projects-section {
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title-main {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(108, 99, 255, 0.3);
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto 20px;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(108, 99, 255, 0.5);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.project-row {
    margin-bottom: 25px;
}

.project-row:last-child {
    margin-bottom: 0;
}

.project-row h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(108, 99, 255, 0.3);
}

.project-row h3 i {
    color: var(--primary-color);
    font-size: 1.3rem;
    background: rgba(108, 99, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
}

.project-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    text-decoration: none;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    font-weight: 600;
    min-width: 200px;
    justify-content: center;
}

.project-link:hover {
    background: var(--gradient);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.5);
    border-color: rgba(108, 99, 255, 0.5);
}

.project-link.discord-link:hover {
    background: #7289da;
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.5);
    border-color: rgba(114, 137, 218, 0.5);
}

.project-link span {
    font-weight: 600;
    font-size: 1.1rem;
}

.project-link i {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* WhatsApp Hero Card */
.whatsapp-hero-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
    border: 3px solid #25d366;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-details {
    text-align: left;
}

.whatsapp-details h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.whatsapp-number-big {
    font-size: 2.2rem;
    font-weight: 800;
    color: #25d366;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 15px;
    display: inline-block;
}

.whatsapp-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.whatsapp-benefits span {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
}

.whatsapp-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #25d366;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta-button:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* Alternative Contacts */
.alternative-contacts {
    margin-bottom: 40px;
}

.alternative-contacts h3 {
    text-align: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.contact-option-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-option-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-option-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-option-header i {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.contact-option-card:nth-child(2) .contact-option-header i {
    background: #5865f2;
}

.contact-option-header h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
}

.contact-option-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
}

.discord-button {
    background: #5865f2;
}

.discord-button:hover {
    background: #4752c4;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

/* Contact Features */
.contact-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.feature-badge i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.feature-badge div h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-badge div p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-top: 30px;
}

.final-cta h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .contact-section h2 {
        font-size: 1.7rem;
    }
    
    .projects-section {
        padding: 25px 20px;
    }
    
    .section-title-main {
        font-size: 1.8rem;
    }
    
    .project-links {
        flex-direction: column;
        align-items: center;
    }
    
    .project-link {
        width: 100%;
        max-width: 280px;
    }
    
    .whatsapp-main-content {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-details {
        text-align: center;
    }
    
    .whatsapp-number-big {
        font-size: 1.8rem;
    }
    
    .whatsapp-benefits {
        justify-content: center;
    }
    
    .whatsapp-cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .contact-options-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-features {
        grid-template-columns: 1fr;
    }
    
    .final-cta h3 {
        font-size: 1.6rem;
    }
    
    .logo-img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 15px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .logo-img {
        width: 180px;
        height: 180px;
    }
}