:root {
    --primary-color: #008cff;
    --secondary-color: white;
    --text-color: white;
    background-image: url("");
    background-color: rgb(0, 0, 0);
    --sidebar-width: 280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
    text-decoration: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
}

.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(220, 240, 255, 0.9) 100%);
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    z-index: 100;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.profile {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.profile-img-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 120, 215, 0.3);
}

.github-icon {
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s;
}

.github-icon:hover {
    transform: scale(1.1);
}

.github-icon img {
    width: 25px;
    height: 25px;
}

.profile-name {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.profile-title {
    font-size: 16px;
    color: whtie;
    margin-bottom: 15px;
}

.nav-menu {
    width: 100%;
    margin-top: 20px;
}

.nav-item {
    padding: 12px 15px;
    margin: 5px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 20px;
}

.nav-item.active,
.nav-item:hover {
    background: linear-gradient(90deg, white, rgb(255, 255, 255));
    color: black;
}

.nav-item i {
    margin-right: 10px;
    font-size: 20px;
}

.content {
    margin-left: var(--sidebar-width);
    padding: 30px;
    width: calc(100% - var(--sidebar-width));
}

.section {
    display: none;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    animation: fadeIn 0.5s;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    width: 100px;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.project-card {
    background: rgb(41, 37, 37);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 120, 215, 0.15);
}

.project-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.project-info {
    padding: 20px;
}

.project-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.project-desc {
    font-size: 14px;
    color: white;
    line-height: 1.5;
    margin-bottom: 15px;
}

.project-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.project-link:hover {
    text-decoration: underline;
}

.about-container {
    line-height: 1.6;
}

.about-container p {
    margin-bottom: 20px;
}

.resume-item {
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(0, 120, 215, 0.3);
}

.resume-item:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    left: -7px;
    top: 5px;
}

.resume-period {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.resume-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.resume-company {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.resume-desc {
    font-size: 14px;
    line-height: 1.6;
}

/* Reflexo Frutiger Aero */
.aero-reflection {
    position: relative;
}

.aero-reflection::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
    transform: scaleY(-1);
    opacity: 0.6;
    filter: blur(2px);
    pointer-events: none;
}

/* Glassmorphism para o estilo Frutiger Aero */
.glass-card {
    background-image: url("");
    background-position: bottom;
    background-repeat: no-repeat;
    backdrop-filter: blur(10px);
    background-size: 100%;
}



/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(240, 240, 240, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}


span{
    color: black;
}


