/* ===== RESET E VARIÁVEIS GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f3a;
    --accent-dark: #2d3561;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-pink: #ff1493;
    --accent-pink-light: #ff69b4;
    --border-color: #3a3f54;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: var(--secondary-dark);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-pink);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-pink);
    background-color: rgba(255, 20, 147, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===== HOME PAGE ===== */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
    border-radius: 12px;
    margin-bottom: 4rem;
    border: 1px solid var(--border-color);
}

.hero-name {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(255, 20, 147, 0.3);
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(255, 20, 147, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-pink);
}

.hero-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 20, 147, 0.4);
    background: linear-gradient(135deg, var(--accent-pink-light), var(--accent-pink));
}

.subtitle {
    font-size: 1.5rem;
    color: var(--accent-pink);
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    margin-bottom: 4rem;
}

.about-section h2,
.projects-preview h2,
.social-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    border-bottom: 3px solid var(--accent-pink);
    padding-bottom: 1rem;
    display: inline-block;
}

.about-content {
    background-color: var(--secondary-dark);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-pink);
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ===== PROJECTS GRID ===== */
.projects-preview {
    margin-bottom: 4rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: var(--secondary-dark);
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-pink);
    box-shadow: 0 8px 24px rgba(255, 20, 147, 0.2);
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-card h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.project-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.whatsapp-card:hover {
    border-color: #25d366;
}

.discord-card:hover {
    border-color: #5865f2;
}

.telegram-card:hover {
    border-color: #0088cc;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
    margin-bottom: 4rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.social-btn {
    padding: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.discord-btn {
    background-color: #5865f2;
    color: white;
}

.discord-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.telegram-btn {
    background-color: #0088cc;
    color: white;
}

.telegram-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.github-btn {
    background-color: var(--accent-dark);
    color: var(--text-light);
    border: 2px solid var(--accent-pink);
}

.github-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(224, 148, 51, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--secondary-dark);
    border-top: 2px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    margin-top: 4rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--secondary-dark);
        flex-direction: column;
        gap: 0;
        width: 100%;
        border-bottom: 2px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .home-container {
        padding: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .about-section h2,
    .projects-preview h2,
    .social-section h2 {
        font-size: 1.5rem;
    }
}

