/* Base Styles & Variables */
:root {
    --neon-green: #00ff9d;
    --neon-blue: #00f3ff;
    --neon-pink: #ff00ff;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --terminal-bg: rgba(10, 10, 10, 0.85);
    --text-color: #e0e0e0;
    --terminal-border: 1px solid var(--neon-green);
    --glow: 0 0 5px var(--neon-green), 0 0 10px var(--neon-green), 0 0 15px var(--neon-green);
    --font-mono: 'JetBrains Mono', monospace;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-mono);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    background-image: 
        linear-gradient(rgba(0, 255, 157, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 157, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Scanlines Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 255, 157, 0) 0%,
        rgba(0, 255, 157, 0) 50%,
        rgba(0, 255, 157, 0.05) 51%,
        rgba(0, 255, 157, 0)
    );
    background-size: 100% 8px;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.3;
}

/* Glitch Effect */
.glitch {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="3" stitchTiles="stitch"></feTurbulence></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"></rect></svg>');
    pointer-events: none;
    z-index: 1001;
    mix-blend-mode: overlay;
    animation: glitch 8s steps(1) infinite;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

/* Layout Principal */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Cabeçalho */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    color: var(--neon-green);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: var(--glow);
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: lowercase;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-green);
    text-shadow: var(--glow);
}

/* Conteúdo Principal */
main {
    margin-top: 80px; /* Altura do cabeçalho */
    min-height: calc(100vh - 160px);
}

/* Seções */
section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    margin-top: -80px; /* Compensa o cabeçalho fixo */
    padding: 0;
}

.terminal {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: var(--terminal-bg);
    border: var(--terminal-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.1);
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: var(--terminal-border);
}

.terminal-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}

.terminal-header .dot.red { background: #ff5f56; }
.terminal-header .dot.yellow { background: #ffbd2e; }
.terminal-header .dot.green { background: #27c93f; }

.terminal-header .title {
    margin-left: 10px;
    font-size: 0.8rem;
    color: var(--neon-green);
}

.terminal-body {
    padding: 2rem;
}

.typing {
    margin: 0.5rem 0;
    color: var(--neon-green);
}

.name {
    font-size: 3rem;
    margin: 1rem 0;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.slogan {
    color: var(--neon-pink);
    margin: 1.5rem 0;
    font-size: 1.5rem;
}

/* Seção Sobre */
.about {
    background: rgba(5, 5, 5, 0.7);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--neon-green);
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-green);
    box-shadow: var(--glow);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hacker-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--neon-green);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.1);
}

.hacker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.2);
}

.card-header {
    color: var(--neon-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 157, 0.3);
}

.card-content p {
    margin: 0.8rem 0;
    line-height: 1.6;
}

.highlight {
    color: var(--neon-blue);
    font-weight: bold;
}

/* Seção Projetos */
.projects {
    background: var(--darker-bg);
}

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

.project-card {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 255, 157, 0.1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.2);
    border-color: var(--neon-green);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-overlay p {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Seção Contato */
.contact {
    background: rgba(5, 5, 5, 0.7);
}

.terminal-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--terminal-bg);
    border: var(--terminal-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neon-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 4px;
    color: var(--text-color);
    font-family: var(--font-mono);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.2);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.btn {
    display: inline-block;
    background: transparent;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: lowercase;
}

.btn:hover {
    background: var(--neon-green);
    color: var(--dark-bg);
    box-shadow: var(--glow);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-link {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--neon-green);
    transform: translateY(-3px);
    text-shadow: var(--glow);
}

/* Rodapé */
footer {
    text-align: center;
    padding: 2rem 0;
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 255, 157, 0.1);
}

footer p {
    margin: 0.5rem 0;
    color: var(--text-color);
    font-size: 0.9rem;
}

footer i {
    color: #ff4d4d;
    margin: 0 5px;
}

/* Efeitos Visuais */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 255, 157, 0.05) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

.glitch {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="%2300ff9d" stroke-width="0.5" stroke-dasharray="2,2"/></svg>');
    opacity: 0.1;
    pointer-events: none;
    z-index: 9998;
}

/* Animações */
@keyframes flicker {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.95; }
}

.typing {
    animation: flicker 1.5s infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .name {
        font-size: 2.2rem;
    }

    .slogan {
        font-size: 1.2rem;
    }

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

    .terminal-body {
        padding: 1.5rem;
    }
}

/* Menu Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        z-index: 999;
        padding: 2rem;
        border-left: 1px solid var(--neon-green);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(0.1s * var(--i));
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(0, 255, 157, 0.1);
        transform: translateY(-2px);
    }

    /* Ajuste para o menu ativo */
    .nav-links a::after {
        display: none;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .nav-links {
        width: 80%;
    }
    
    .hamburger {
        width: 25px;
        height: 18px;
    }
    
    .hamburger span {
        height: 2px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .slogan {
        font-size: 1.1rem;
    }
}

/* Garantir que o conteúdo não fique escondido atrás do menu fixo */
main {
    padding-top: 80px;
}

/* Efeito de carregamento */
body:not(.carregado) {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.carregado {
    opacity: 1;
}


/* Seção de Certificados */
.certificates {
    padding: 5rem 0;
    background-color: rgba(5, 5, 5, 0.8);
    position: relative;
    overflow: hidden;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.certificate-card {
    background: rgba(15, 15, 25, 0.9);
    border: 1px solid var(--neon-green);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.1);
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 157, 0.2);
    border-color: var(--neon-blue);
}

.certificate-image {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* Proporção 16:9 */
}

.certificate-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.05);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
}

.certificate-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.certificate-info h3 {
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.certificate-info p {
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.certificate-info .date {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.8rem;
    margin-top: auto;
}

/* Modal para visualização ampliada */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border: 2px solid var(--neon-green);
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .certificate-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Seção de Experiências */
.experiences {
    position: relative;
    background-color: rgba(10, 10, 10, 0.7);
    padding: 5rem 0;
}

.experiences-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.experience-card {
    background: rgba(15, 15, 25, 0.8);
    border: 1px solid var(--neon-green);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--neon-green);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 157, 0.2);
}

.experience-card:hover::before {
    width: 8px;
    background: var(--neon-pink);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.experience-header h3 {
    color: var(--neon-green);
    font-size: 1.5rem;
    margin: 0;
}

.experience-period {
    background: rgba(0, 255, 157, 0.1);
    color: var(--neon-green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.experience-company {
    color: var(--neon-blue);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.experience-description {
    color: var(--text-color);
    line-height: 1.7;
}

.experience-description p {
    margin-bottom: 1rem;
}

.experience-description ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1rem;
}

.experience-description li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.experience-description li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
    .experience-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .experience-period {
        margin-top: 0.5rem;
    }
    
    .experience-card {
        padding: 1.5rem;
    }
}

/* Seção de Hobbies e Interesses */
.hobbies {
    padding: 5rem 0;
    background-color: rgba(5, 5, 5, 0.8);
    position: relative;
    overflow: hidden;
}

.hobbies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, var(--neon-green) 48%, var(--neon-green) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, var(--neon-green) 48%, var(--neon-green) 52%, transparent 52%);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

.hobbies-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hobby-card {
    background: rgba(15, 15, 25, 0.9);
    border: 1px solid var(--neon-green);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.1);
}

.hobby-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hobby-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 157, 0.2);
    border-color: var(--neon-blue);
}

.hobby-card:hover::before {
    opacity: 1;
}

.hobby-icon {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hobby-card:hover .hobby-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--neon-blue);
}

.hobby-card h3 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.hobby-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
}

.hobby-card:hover h3::after {
    width: 100%;
}

.hobby-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 4.8rem; /* Ajuste para manter o alinhamento */
}

.hobby-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hobby-tags span {
    display: inline-block;
    background: rgba(0, 255, 157, 0.1);
    color: var(--neon-green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.hobby-card:hover .hobby-tags span {
    background: rgba(0, 195, 255, 0.2);
    color: var(--neon-blue);
}

/* Responsividade */
@media (max-width: 768px) {
    .hobbies-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .hobby-card {
        padding: 1.5rem;
    }
    
    .hobby-card p {
        min-height: auto;
    }
}

/* Efeito de partículas flutuantes */
.hobby-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, transparent 60%, rgba(0, 255, 157, 0.03) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hobby-card:hover::after {
    opacity: 1;
}

/* Estilos do Menu Hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--neon-green);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Efeito de hover para melhorar a interatividade */
.hamburger:hover span {
    background-color: var(--neon-blue);
}

/* Estilo quando o menu está ativo */
.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Estilos para telas menores */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.5s ease;
        z-index: 999;
        padding: 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        padding: 10px 20px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background-color: rgba(0, 255, 157, 0.1);
        color: var(--neon-blue);
    }
}

/* Melhorias para telas muito pequenas */
@media screen and (max-width: 480px) {
    .nav-links {
        width: 85%;
    }
    
    .hamburger {
        width: 25px;
        height: 20px;
    }
}