/* ===== ESTILOS MODERNOS COM TEMA PROGRAMAÇÃO ===== */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&family=Poppins:wght@300;500;700&display=swap');

:root {
    --primary: #00ff88;
    --secondary: #00d4ff;
    --accent: #ff006e;
    --dark-bg: #0a0e27;
    --card-bg: #1a1f3a;
    --border-color: #00ff8844;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f0f23 100%);
    background-attachment: fixed;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Efeito de Grid de fundo animado */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(0deg, transparent 24%, rgba(0, 255, 136, 0.05) 25%, rgba(0, 255, 136, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 136, 0.05) 75%, rgba(0, 255, 136, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(0, 255, 136, 0.05) 25%, rgba(0, 255, 136, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 136, 0.05) 75%, rgba(0, 255, 136, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* ===== HEADER E NAV ===== */
header {
    background: linear-gradient(to bottom, rgba(0, 255, 136, 0.1), transparent);
    border-bottom: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 40px;
    padding: 20px;
}

nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

nav a:hover::before {
    width: 100%;
}

nav a:hover {
    text-shadow: 0 0 10px var(--primary);
    color: var(--secondary);
}

/* ===== HERO SECTION ===== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

#hero h1 {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: glow 3s ease-in-out infinite;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 2px;
}

#hero p {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 30px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

#hero .descricao {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}



#hero button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#hero button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.8), 0 0 100px rgba(0, 212, 255, 0.5);
}

#hero button:active {
    transform: translateY(-1px);
}

.foto-perfil {
    max-width: 300px;
    border-radius: 10%;
    border: 5px solid var(--border-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    margin-bottom: 30px;
    z-index: 1;
}

/* ===== SEÇÃO PROJETOS ===== */
#projetos {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

#projetos h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    display: inline-block;
    width: 100%;
}

#projetos h2::before,
#projetos h2::after {
    content: '<>';
    position: absolute;
    color: var(--secondary);
    font-size: 2rem;
}

#projetos h2::before {
    left: 10%;
}

#projetos h2::after {
    right: 10%;
}

.projeto {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.projeto::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
    transition: left 0.5s ease;
}

.projeto:hover::before {
    left: 100%;
}

.projeto:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4), inset 0 0 30px rgba(0, 255, 136, 0.1);
    transform: translateY(-5px);
}

.projeto h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'JetBrains Mono', monospace;
}

.projeto p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 25px;
}

.projeto img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    display: block;
}

.projeto img:hover {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.ver-projeto {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.ver-projeto:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6), 0 0 80px rgba(0, 212, 255, 0.3);
}
#softskills {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#softskills h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 50px;
    font-family: 'JetBrains Mono', monospace;
}

#softskills ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

#softskills li {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 20px;
    border-radius: 10px;
    font-size: 1.1rem;
    color: #b0b0b0;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    transition: all 0.3s ease;
}

#softskills li:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* ===== SEÇÃO CERTIFICADOS ===== */
#Area-de-certificação {
    max-width: 1200px;
    margin: 60px auto;
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

#Area-de-certificação h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    display: block;
    width: 100%;
}

.certificados {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.certificados img {
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    display: block;
    transition: all 0.3s ease;
}

.certificados a {
    display: inline-block;
    margin: 0;
}

.certificados img:hover {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5), inset 0 0 15px rgba(0, 255, 136, 0.1);
    transform: scale(1.05);
}
    
    


/* ===== SEÇÃO CONTATO ===== */
#contato {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contato h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
}

#contato p {
    margin-bottom: 40px;
}

p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* Redes Sociais */
#contato .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#contato a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    border: 2px solid var(--border-color);
    padding: 15px 20px;
    border-radius: 10px;
    width: 70px;
    height: 70px;
}

#contato a:hover {
    color: var(--primary);
    border-color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

a:not(#contato a) {
    display: inline;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    margin: 0;
}

a:not(#contato a):hover {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary);
}

footer {

    text-align: center;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 255, 136, 0.1), transparent);
    border-top: 1px solid var(--border-color);
    font-family: 'Poppins', sans-serif;
    color: #888;
    font-size: 0.9rem;
}


/* ===== ANIMAÇÕES ===== */
@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }

    50% {
        text-shadow: 0 0 40px rgba(0, 255, 136, 0.8), 0 0 60px rgba(0, 212, 255, 0.5);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }

    .foto-perfil {
        max-width: 220px;
    }

    #hero p {
        font-size: 1.2rem;
    }

    #projetos h2,
    #Area-de-certificação h2,
    #softskills h2,
    #contato h2 {
        font-size: 2rem;
    }

    p {
        font-size: 18px;
    }

    #projetos h2::before,
    #projetos h2::after {
        display: none;
    }

    .certificados img {
        max-width: 250px;
    }

    nav ul {
        gap: 20px;
        flex-wrap: wrap;
    }

    #softskills ul {
        grid-template-columns: 1fr;
    }

    #contato a {
        font-size: 1.8rem;
        width: 60px;
        height: 60px;
        padding: 10px;
    }

    #contato .social-links {
        gap: 15px;
    }
}
