
:root {
  
    --bg-body: #121214;       
    --bg-card: #202024;       
    --primary: #8257e5;       
    --text-main: #e1e1e6;     
    --text-secondary: #a8a8b3;
    --white: #ffffff;
    
  
    --font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth; 
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: var(--bg-card);
    position: sticky; 
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo h3 {
    color: var(--primary);
    font-size: 1.5rem;
}

.navItens {
    list-style: none;
    display: flex;
    gap: 20px; 
}

.navItens a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: 0.3s;
}

.navItens a:hover {
    color: var(--primary); 
}


.hero {
    height: 90vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.profilePic {
    width: 180px;
    height: 180px;
    border-radius: 50%; 
    border: 3px solid var(--primary);
    margin-bottom: 20px;
    object-fit: cover; 
}

.heroText h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.heroText h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.2rem;
    padding: 10px 20px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--white);
}


.section-container {
    max-width: 900px;
    margin: 0 auto; 
    padding: 80px 20px;
}

.section-title {
    font-size: 2rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    margin-bottom: 40px;
    padding-bottom: 5px;
}

.skills-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.skill-category {
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    border-top: 3px solid var(--primary); 
}

.skill-category h3 {
    margin-bottom: 15px;
    color: var(--white);
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}


.skill-category li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
}


.job-item {
    background-color: var(--bg-card);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary); 
}

.job-item h3 {
    margin-bottom: 5px;
}

.job-item .date {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-style: italic;
}


footer {
    background-color: var(--bg-card);
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.contact-item a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 8px;
    font-size: 1.1rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 20px;
}


@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .navItens {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .heroText h1 {
        font-size: 2rem;
    }

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