/* ===== VARIÁVEIS GLOBAIS ===== */
:root {
    /* Cores Principais */
    --background-primary: #121212;
    --background-secondary: #1a1a1a;
    --text-primary: #f0f0f0;
    --text-secondary: #888;
    
    /* Cores Neon */
    --neon-primary: #00ffcc;
    --neon-secondary: #0077ff;
    --neon-tertiary: #ff00ff;
    --neon-color: #00ffcc; /* Para compatibilidade com o código existente */
    --accent-color: #f0f0f0; /* Para compatibilidade com o código existente */
    --dark-bg: #121212; /* Para compatibilidade com o código existente */
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary));
    --gradient-secondary: linear-gradient(45deg, var(--neon-secondary), var(--neon-tertiary));

    /* Fontes */
    --font-code: 'Fira Code', monospace;
    --font-main: 'JetBrains Mono', monospace;
    
    /* Tamanhos */
    --header-height: 70px;
    --container-width: 1200px;
    --border-radius: 8px;
    
    /* Efeitos */
    --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.15);
    --shadow-large: 0 10px 25px rgba(0, 0, 0, 0.25);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--background-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea {
    font-family: inherit;
    font-size: 1rem;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}

section {
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== UTILIDADES ===== */
.neon-text {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    color: var(--neon-primary);
    font-weight: 700;
    text-shadow: 
        0 0 5px var(--neon-primary),
        0 0 10px var(--neon-primary),
        0 0 15px var(--neon-primary);
    letter-spacing: 0;
    position: relative;
}

.glitch {
    position: relative;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: 5px;
    z-index: 1;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.glitch::before {
    color: var(--neon-primary);
    animation: glitch-animation 0.4s infinite;
}

.glitch::after {
    color: var(--neon-secondary);
    animation: glitch-animation 0.4s infinite reverse;
}

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

/* ===== FUNDO INTERATIVO COM DISTORÇÃO ===== */
#distortion-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 204, 0.1), transparent 80%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    filter: blur(20px);
    transition: transform 0.3s ease-out, background 0.3s ease-out;
}

/* ===== PARTICLES BACKGROUND ===== */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    transition: transform 0.3s ease-out;
}

/* ===== CÓDIGO MATRIX (CHUVA DE CARACTERES) ===== */
.code-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
}

/* ===== CABEÇALHO ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

header.scrolled {
    height: 60px;
    background: rgba(18, 18, 18, 0.98);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    display: flex;
    align-items: center;
}

/* Adicionando estilo para o texto da logo */
.code-logo {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    color: var(--text-primary);
    background: linear-gradient(to right, var(--text-primary) 30%, var(--neon-primary) 70%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    font-weight: 600;
    letter-spacing: 0;
    position: relative;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.2);
}

/* Adicionando efeito de hover na logo */
.logo:hover .terminal-cursor {
    animation: blink 0.5s step-end infinite;
}

/* Cursor estilo terminal */
.terminal-cursor {
    display: inline-block;
    width: 3px;
    height: 1.7em;
    background-color: #ffffff;
    margin-left: 0.2em;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    position: relative;
    border-radius: 1px;
}

/* Animação de brilho para o texto da logo */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Animação de cursor piscando */
@keyframes blink {
    0%, 100% { 
        opacity: 1; 
    }
    50% { 
        opacity: 0; 
    }
}

.navbar ul {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    color: var(--neon-primary);
    width: 0;
    overflow: hidden;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform-origin: left;
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero .container {
    text-align: center;
    z-index: 2;
    margin-top: 80px;
}

.glitch-wrapper {
    padding: 20px 0;
    overflow: hidden;
}

.typing-text {
    font-size: 1.8rem;
    margin: 20px 0 40px;
    min-height: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
}

.neon-btn {
    background: var(--background-secondary);
    color: var(--neon-primary);
    box-shadow: 0 0 5px var(--neon-primary);
}

.neon-btn:hover {
    background: var(--neon-primary);
    color: var(--background-secondary);
    box-shadow: 
        0 0 10px var(--neon-primary),
        0 0 30px var(--neon-primary);
}

.neon-btn span, .outline-btn span {
    position: absolute;
    display: block;
}

.neon-btn span:nth-child(1), 
.outline-btn span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-primary));
    animation: btn-anim1 2s linear infinite;
}

.outline-btn {
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
}

.outline-btn:hover {
    color: var(--background-primary);
    background: var(--text-primary);
    box-shadow: 0 0 20px rgba(240, 240, 240, 0.4);
}

@keyframes btn-anim1 {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.neon-btn span:nth-child(2), 
.outline-btn span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--neon-primary));
    animation: btn-anim2 2s linear infinite;
    animation-delay: 0.5s;
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }
    50%, 100% {
        top: 100%;
    }
}

.neon-btn span:nth-child(3), 
.outline-btn span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, var(--neon-primary));
    animation: btn-anim3 2s linear infinite;
    animation-delay: 1s;
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }
    50%, 100% {
        right: 100%;
    }
}

.neon-btn span:nth-child(4), 
.outline-btn span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, var(--neon-primary));
    animation: btn-anim4 2s linear infinite;
    animation-delay: 1.5s;
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }
    50%, 100% {
        bottom: 100%;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.7;
    animation: fade-in-out 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-primary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-primary);
    border-radius: 2px;
    margin-top: 10px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.arrow span {
    display: block;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid var(--text-primary);
    border-right: 2px solid var(--text-primary);
    transform: rotate(45deg);
}

@keyframes fade-in-out {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: var(--text-primary);
    font-family: var(--font-code);
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    position: relative;
}

.underline::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--gradient-secondary);
    top: 0;
    left: 45px;
    animation: underline-move 2s infinite alternate;
}

@keyframes underline-move {
    from {
        transform: translateX(-45px);
    }
    to {
        transform: translateX(45px);
    }
}

/* ===== SOBRE SECTION ===== */
.bio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

/* Coluna do perfil */
.profile-column {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.profile-card {
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(130, 200, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.2);
    padding: 20px;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.4);
}

.profile-photo {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--neon-color);
}

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

.profile-photo:hover img {
    transform: scale(1.05);
}

.profile-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 150, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-photo:hover .profile-hover-effect {
    opacity: 1;
}

.profile-info {
    text-align: center;
}

.profile-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.profile-tag {
    background: rgba(0, 150, 255, 0.1);
    border: 1px solid rgba(0, 150, 255, 0.3);
    color: var(--neon-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.profile-tag:hover {
    background: rgba(0, 150, 255, 0.2);
    transform: translateY(-2px);
}

/* Timeline Column */
.timeline-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-header {
    text-align: center;
    margin-bottom: 40px;
}

.timeline-header h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.timeline-header h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--neon-color);
}

.timeline {
    position: relative;
    padding-top: 20px;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neon-color) 0%, rgba(0, 150, 255, 0.3) 100%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 50px;
    opacity: 0.7;
    transition: all 0.3s ease;
    margin-left: 0;
    padding-left: 0;
    display: flex;
    justify-content: center;
}

.timeline-item:hover {
    opacity: 1;
}

.timeline-item:before {
    content: attr(data-year);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    background: rgba(10, 10, 20, 0.8);
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 150, 255, 0.3);
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--neon-color);
    box-shadow: 0 0 10px var(--neon-color);
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 15px var(--neon-color);
}

.timeline-content {
    background: rgba(10, 10, 20, 0.4);
    border-left: 3px solid var(--neon-color);
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 45%;
    max-width: 450px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    margin-left: 5px;
    border-left: none;
    border-right: 3px solid var(--neon-color);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 5px;
}

.timeline-item:hover .timeline-content {
    background: rgba(10, 10, 20, 0.6);
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.2);
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Responsive design para mobile */
@media screen and (max-width: 768px) {
    .timeline:before {
        left: 30px;
        transform: none;
    }
    
    .timeline-dot {
        left: 30px;
        transform: none;
    }
    
    .timeline-item {
        justify-content: flex-start;
        padding-left: 60px;
    }
    
    .timeline-item:before {
        left: 30px;
        top: -30px;
        transform: none;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        border-left: 3px solid var(--neon-color);
        border-right: none;
        text-align: left;
    }
    
    .timeline-item:hover .timeline-dot {
        transform: scale(1.3);
    }
}

/* Animações da timeline */
.timeline-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.animate-timeline {
    opacity: 0.7;
    transform: translateY(0);
}

.timeline-item:hover {
    opacity: 1;
}

/* Deixar o estilo do about-content como já está */
.about-content {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.about-text {
    width: 100%;
    max-width: 800px;
}

.about-terminal {
    margin: 0 auto;
}

.about-img-wrapper {
    position: relative;
}

.about-img-border {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.about-img-border::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--neon-primary);
    border-radius: var(--border-radius);
    animation: border-pulse 3s infinite;
    z-index: -1;
}

@keyframes border-pulse {
    0%, 100% {
        box-shadow: 0 0 15px var(--neon-primary);
    }
    50% {
        box-shadow: 0 0 25px var(--neon-primary);
    }
}

.about-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-large);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.code-block {
    background: var(--background-secondary);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow-x: auto;
    max-width: 100%;
    font-family: var(--font-code);
    box-shadow: var(--shadow-medium);
    border-left: 4px solid var(--neon-primary);
}

.code-block::before {
    content: '/* about.js */';
    position: absolute;
    top: 5px;
    right: 10px;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.code-block pre {
    margin: 0;
    max-width: 100%;
    white-space: pre-wrap;
}

.code-block code {
    color: var(--text-primary);
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* ===== HABILIDADES SECTION ===== */
.skills-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.skill-category {
    margin-bottom: 20px;
}

.skill-category h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--neon-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    font-family: var(--font-code);
}

.skill-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.skill-card {
    background: var(--background-secondary);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-small);
}

.skill-card::before {
    content: attr(data-skill);
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 5rem;
    font-weight: 700;
    opacity: 0.03;
    z-index: 0;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.2);
}

.skill-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: var(--neon-primary);
}

.skill-info {
    flex: 1;
}

.skill-info h4 {
    margin-bottom: 10px;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.4), 
                transparent);
    animation: progress-animate 1.5s infinite;
}

@keyframes progress-animate {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ===== PROJETOS SECTION ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 100%;
}

.project-card {
    position: relative;
    border-radius: var(--border-radius);
    background: var(--background-secondary);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.15);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.5s ease;
}

.project-card:hover::before {
    height: 100%;
}

.project-content {
    display: flex;
    flex-direction: column;
}

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

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.project-links {
    display: flex;
    gap: 20px;
}

.project-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-normal);
    transition-delay: 0.1s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.project-link:nth-child(2) {
    transition-delay: 0.2s;
}

.project-card:hover .project-link {
    transform: translateY(0);
    opacity: 1;
}

.project-link:hover {
    background: var(--neon-primary);
    color: var(--background-primary);
}

.project-info {
    padding: 25px;
}

.project-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.project-description {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}

.tag {
    background: rgba(0, 255, 204, 0.1);
    color: var(--neon-primary);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-date {
    position: absolute;
    right: 0;
    bottom: 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-style: italic;
    padding: 5px 0;
}

/* ===== CONTATO SECTION ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--background-secondary);
    padding: 25px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-small);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 204, 0.1);
}

.contact-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--neon-primary);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-card p {
    color: var(--text-secondary);
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--background-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-small);
}

.social-link:hover {
    background: var(--neon-primary);
    color: var(--background-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.3);
}

.terminal {
    background: var(--background-secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.terminal-header {
    display: flex;
    align-items: center;
    background: #333;
    padding: 10px;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #FF5F56;
}

.yellow {
    background: #FFBD2E;
}

.green {
    background: #27C93F;
}

.terminal-title {
    flex: 1;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.terminal-body {
    padding: 20px;
    font-family: var(--font-code);
    font-size: 0.9rem;
}

.terminal-line {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.terminal-response {
    color: var(--neon-primary);
    margin: 10px 0 20px 20px;
}

.prompt {
    color: var(--neon-primary);
    margin-right: 10px;
}

.command {
    color: var(--text-primary);
    margin-right: 10px;
}

.terminal-line input,
.terminal-line textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    resize: vertical;
}

.terminal-line textarea {
    min-height: 100px;
}

.submit-btn {
    background: var(--neon-primary);
    color: var(--background-primary);
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 10px;
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-code);
    box-shadow: 0 0 10px var(--neon-primary);
}

.submit-btn:hover {
    background: var(--background-primary);
    color: var(--neon-primary);
    box-shadow: 0 0 15px var(--neon-primary);
}

/* ===== FOOTER ===== */
footer {
    background: var(--background-secondary);
    padding: 40px 0 20px;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.code-logo-footer {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    background: linear-gradient(to right, var(--text-primary) 40%, var(--neon-primary) 60%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    font-weight: 600;
    letter-spacing: 0;
    position: relative;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.2);
}

/* Efeitos de hover na logo do rodapé */
.footer-logo:hover .terminal-cursor {
    animation: blink 0.5s step-end infinite;
}

/* Cursor estilo terminal */
.terminal-cursor.small {
    height: 1.2em;
    width: 2px;
    background-color: #ffffff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.back-to-top {
    text-align: center;
}

#scrollToTop {
    width: 40px;
    height: 40px;
    background: var(--background-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-small);
    transition: var(--transition-normal);
}

#scrollToTop:hover {
    background: var(--neon-primary);
    color: var(--background-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.3);
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1100px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-img-wrapper {
        margin-bottom: 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 900px) {
    html {
        font-size: 15px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        max-width: 100%;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(10px);
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        z-index: 100;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .navbar.active {
        height: auto;
    }
    
    .navbar ul {
        flex-direction: column;
        padding: 20px 0;
        align-items: center;
    }
    
    .navbar ul li {
        margin: 10px 0;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 600px) {
    html {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .glitch {
        font-size: 3rem;
    }
    
    .typing-text {
        font-size: 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .code-block {
        max-width: 100%;
        overflow-x: auto;
    }
    
    section {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
        padding: 0 15px;
    }
}

/* Animação para elementos aparecendo na tela */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Estilo para botão de CV */
.cv-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 204, 0.1);
    color: var(--neon-primary);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    transition: var(--transition-normal);
}

.cv-btn:hover {
    background: var(--neon-primary);
    color: var(--background-primary);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

/* === MODAL DE IMAGEM === */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
}

.modal-content {
    position: relative;
    margin: 8% auto;
    padding: 0;
    width: 60%;
    max-width: 800px;
    will-change: transform;
    transform: translate(0, 0) scale(1);
    opacity: 1;
}

.modal-media-container {
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 255, 153, 0.7);
    background-color: #000;
    aspect-ratio: 16/9;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -5px;
    color: var(--neon-color);
    font-size: 38px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    text-shadow: 0 0 10px var(--neon-color);
    transition: all 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.1) rotate(90deg);
    text-shadow: 0 0 20px var(--neon-color), 0 0 30px var(--neon-color);
}

#expandedImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

#projectVideo {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    object-fit: contain;
    background-color: #000;
}

/* Estilos para os botões de vídeo */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.project-link .fa-play,
.project-link .fa-eye {
    font-size: 1.2em;  /* Mesmo tamanho dos outros ícones */
    color: #fff;
    text-shadow: none;
    transition: all 0.3s ease;
}

.project-link:hover .fa-play,
.project-link:hover .fa-eye {
    color: var(--neon-color);
    text-shadow: 0 0 10px var(--neon-color);
    transform: none;
    animation: none;
}

/* Ajustes para o modal em dispositivos móveis */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: 100%;
        margin: 15% auto 5%;
    }
    
    .modal-media-container {
        aspect-ratio: 16/9;
        border-radius: 6px;
    }
    
    #projectVideo, #expandedImage {
        width: 100%;
        height: auto;
        max-height: 80vh;
    }
    
    .close-modal {
        top: -35px;
        right: 5px;
        font-size: 32px;
        padding: 5px;
    }
    
    /* Melhorar a visibilidade dos controles de vídeo */
    video::-webkit-media-controls-panel {
        background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    }
    
    video::-webkit-media-controls-play-button {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        margin: 0;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .image-modal {
        background-color: rgba(0, 0, 0, 0.95);
        padding: 0;
    }
    
    .modal-media-container {
        height: auto;
        max-height: 80vh;
        aspect-ratio: auto;
        box-shadow: none;
        border-radius: 0;
    }
    
    #projectVideo, #expandedImage {
        border-radius: 0;
        object-fit: contain;
        width: 100%;
        height: auto;
    }
    
    .close-modal {
        color: #fff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        top: 15px;
        right: 15px;
        font-size: 28px;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 5px 10px;
        border-radius: 50%;
    }
}

/* ===== SEÇÃO DE HABILIDADES INTERATIVA ===== */
.skill-dashboard {
    background: rgba(26, 26, 26, 0.7);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 255, 204, 0.1);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.dashboard-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--neon-primary);
    text-shadow: 0 0 5px var(--neon-primary);
    margin-bottom: 10px;
}

.dashboard-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    opacity: 0.7;
}

.skill-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.skill-tab {
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(0, 255, 204, 0.3);
    color: var(--text-secondary);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.skill-tab:hover::before {
    width: 100%;
}

.skill-tab.active {
    background: var(--gradient-primary);
    color: var(--background-primary);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
    border: 1px solid transparent;
    font-weight: 500;
}

.skill-categories {
    position: relative;
}

.skill-category-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.skill-category-content.active {
    display: block;
}

.skill-hexagon-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    justify-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.skill-hexagon {
    width: 160px;
    height: 160px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s ease;
    perspective: 1000px;
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    border-radius: 10px;
    padding: 15px;
    box-sizing: border-box;
}

.skill-hexagon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 10px;
    z-index: -1;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 255, 204, 0.2);
}

.skill-hexagon::after {
    content: '';
    position: absolute;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background: rgba(18, 18, 18, 0.9);
    border-radius: 8px;
    z-index: -1;
    transition: all 0.4s ease;
}

.skill-hexagon.animated {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skill-hexagon:hover {
    transform: translateY(-10px) rotateX(0) rotateY(0);
}

.skill-hexagon:hover::before {
    box-shadow: 0 0 20px var(--neon-primary);
    background: radial-gradient(circle at var(--glow-position, center), rgba(0, 255, 204, 0.4), rgba(0, 255, 204, 0.1) 50%);
    border: 1px solid var(--neon-primary);
}

.hexagon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}

.hexagon-content i {
    font-size: 3rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.skill-name {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hexagon-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: rotateY(90deg);
    transition: all 0.4s ease;
    padding: 20px;
}

.skill-hexagon:hover .hexagon-content {
    opacity: 0;
    transform: rotateY(-90deg);
}

.skill-hexagon:hover .hexagon-hover {
    opacity: 1;
    transform: rotateY(0);
}

.skill-level {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-primary);
    text-shadow: 0 0 5px var(--neon-primary);
    margin-bottom: 5px;
}

.skill-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    margin: 10px 0;
    overflow: hidden;
    position: relative;
}

.skill-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 30px;
    position: relative;
    width: 0;
    animation: skillFill 1.5s ease forwards;
}

.skill-years {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

@keyframes skillFill {
    from { width: 0; }
    to { width: var(--width); }
}

.scanner-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 150%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 204, 0.1), 
        rgba(0, 255, 204, 0.3), 
        rgba(0, 255, 204, 0.7), 
        rgba(0, 255, 204, 0.3), 
        rgba(0, 255, 204, 0.1), 
        transparent
    );
    animation: scanLine 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    opacity: 0.8;
    z-index: 1;
    box-shadow: 
        0 0 8px var(--neon-primary),
        0 0 12px rgba(0, 255, 204, 0.5);
    pointer-events: none;
}

.scanner-line::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(
        circle,
        rgba(0, 255, 204, 0.8) 0%,
        rgba(0, 255, 204, 0.4) 40%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(5px);
}

@keyframes scanLine {
    0% { 
        left: -150%; 
        opacity: 0;
    }
    10% { 
        opacity: 0.8;
    }
    50% { 
        left: 100%; 
        opacity: 0.8;
    }
    90% { 
        opacity: 0;
    }
    100% { 
        left: 100%; 
        opacity: 0;
    }
}

.hologram-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 255, 204, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.15;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .skill-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .skill-tab {
        flex: 1;
        min-width: 80px;
        text-align: center;
        padding: 8px 5px;
        font-size: 0.85rem;
    }
    
    .skill-hexagon-container {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 15px;
        max-width: 95%;
    }
    
    .skill-hexagon {
        width: 130px;
        height: auto;
        min-height: 130px;
        padding: 15px 10px;
        display: flex;
        align-items: center;
    }
    
    .hexagon-content {
        padding: 10px 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    
    .hexagon-content i {
        font-size: 2.2rem;
        margin-bottom: 8px;
        margin-top: 0;
    }
    
    .skill-name {
        font-size: 0.9rem;
    }
    
    /* Ajustes para o scanner */
    .scanner-line {
        height: 2px;
        opacity: 0.5;
    }
    
    .scanner-line::after {
        width: 15px;
        height: 15px;
        top: -5px;
    }
}

@media (max-width: 480px) {
    .skill-hexagon-container {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
        max-width: 100%;
    }
    
    .skill-hexagon {
        width: 100px;
        height: 100px;
        padding: 10px 5px;
        min-height: auto;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hexagon-content {
        padding: 5px;
        gap: 5px;
    }
    
    .hexagon-content i {
        font-size: 1.8rem;
        margin-bottom: 5px;
        margin-top: 0;
    }
    
    .skill-name {
        font-size: 0.8rem;
        margin: 0;
    }
    
    .skill-level {
        font-size: 1.5rem;
    }
    
    .skill-years {
        font-size: 0.8rem;
    }
    
    .skill-dashboard {
        padding: 20px 15px;
    }
    
    .dashboard-title {
        font-size: 1.5rem;
    }
    
    .dashboard-subtitle {
        font-size: 0.8rem;
    }
    
    .skill-tab {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .hexagon-hover {
        padding: 5px;
    }
    
    .skill-bar {
        margin: 5px 0;
    }
}

/* Ajustes para dispositivos muito pequenos */
@media (max-width: 380px) {
    .skill-hexagon {
        width: 85px;
        height: 85px;
        padding: 5px;
    }
    
    .hexagon-content i {
        font-size: 1.5rem;
        margin-bottom: 3px;
    }
    
    .skill-name {
        font-size: 0.7rem;
    }
}

/* Melhorias para dispositivos touch */
@media (hover: none) {
    .skill-mini-level {
        display: block;
    }
    
    .skill-hexagon .hexagon-content .skill-mini-level {
        position: static;
        margin-top: 5px;
        background: none;
        border: none;
        box-shadow: none;
        font-size: 1.2rem;
    }
    
    .skill-hexagon {
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }
    
    .hexagon-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 100%;
        width: 100%;
    }
    
    .hexagon-content i {
        margin-top: 0;
        margin-bottom: 5px;
    }
    
    .skill-name {
        margin-top: auto;
        margin-bottom: auto;
    }
    
    .skill-hexagon::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        bottom: 10px;
        right: 10px;
        border-radius: 50%;
        background-color: rgba(0, 255, 204, 0.2);
        box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
        animation: pulse 1.5s infinite;
        z-index: 2;
    }
    
    .skill-hexagon.active {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    
    .skill-hexagon.active::before {
        border-color: var(--neon-primary);
        box-shadow: 0 0 10px var(--neon-primary);
    }
    
    .skill-hexagon.active::after {
        display: none;
    }
    
    .skill-hexagon.active .hexagon-hover {
        opacity: 1;
    }
    
    .skill-hexagon .hexagon-hover {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(18, 18, 18, 0.95);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease;
        z-index: 2;
        padding: 10px;
    }
    
    @keyframes pulse {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.3);
        }
        
        70% {
            transform: scale(1);
            box-shadow: 0 0 0 10px rgba(0, 255, 204, 0);
        }
        
        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(0, 255, 204, 0);
        }
    }
}

/* Garantir que o layout em grade seja sempre aplicado */

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 1.2rem;
        margin-top: 5px;
    }
}

.skill-mini-level {
    display: none;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--neon-primary);
    font-size: 0.9rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 255, 204, 0.3);
    border: 1px solid rgba(0, 255, 204, 0.3);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.skill-hexagon.active .skill-mini-level,
.skill-hexagon:hover .skill-mini-level {
    opacity: 1;
}

.counter {
    visibility: hidden;
}

.skill-hexagon.active .counter,
.skill-hexagon:hover .counter {
    visibility: visible;
}

@media (hover: none) {
    .skill-mini-level {
        display: block;
    }
    
    .skill-hexagon .hexagon-content .skill-mini-level {
        position: static;
        margin-top: 5px;
        background: none;
        border: none;
        box-shadow: none;
        font-size: 1.2rem;
    }
    
    .skill-hexagon {
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .skill-hexagon::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        bottom: 10px;
        right: 10px;
        border-radius: 50%;
        background-color: rgba(0, 255, 204, 0.2);
        box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
        animation: pulse 1.5s infinite;
        z-index: 2;
    }
    
    .skill-hexagon.active {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    
    .skill-hexagon.active::before {
        border-color: var(--neon-primary);
        box-shadow: 0 0 10px var(--neon-primary);
    }
    
    .skill-hexagon.active::after {
        display: none;
    }
    
    .skill-hexagon.active .hexagon-hover {
        opacity: 1;
    }
    
    .skill-hexagon .hexagon-hover {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(18, 18, 18, 0.95);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease;
        z-index: 2;
    }
    
    @keyframes pulse {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.3);
        }
        
        70% {
            transform: scale(1);
            box-shadow: 0 0 0 10px rgba(0, 255, 204, 0);
        }
        
        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(0, 255, 204, 0);
        }
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 1.2rem;
        margin-top: 5px;
    }
}

/* Estilos para a seção Sobre com nova estrutura */
.about-img-top {
    margin: 0 auto 30px;
    text-align: center;
    max-width: 220px;
}

.about-img-top .about-img-border {
    position: relative;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(145deg, rgba(0, 255, 204, 0.2), rgba(51, 204, 255, 0.2));
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

.about-img-top .about-img-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--neon-primary), var(--neon-secondary));
    z-index: -1;
    animation: border-pulse 2s infinite;
}

.about-img-top .about-img {
    overflow: hidden;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    border: 3px solid #121212;
}

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

.about-img-top:hover .about-img img {
    transform: scale(1.1);
}

/* Timeline interativa */
.timeline-container {
    margin: 50px auto;
    max-width: 900px;
    position: relative;
}

.timeline-header {
    text-align: center;
    margin-bottom: 30px;
}

.timeline-header h3 {
    font-size: 1.8rem;
    color: var(--neon-primary);
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(180deg, rgba(0, 255, 204, 0.2), rgba(51, 204, 255, 0.5), rgba(0, 255, 204, 0.2));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    box-shadow: 0 0 8px rgba(0, 255, 204, 0.4);
}

.timeline-item {
    padding: 15px 30px;
    position: relative;
    width: 50%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: var(--neon-primary);
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: 25px;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.6);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
    right: auto;
}

.timeline-date {
    display: inline-block;
    color: var(--neon-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 3px rgba(0, 255, 204, 0.4);
}

.timeline-content {
    background-color: rgba(18, 18, 18, 0.8);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 204, 0.2);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 22px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent rgba(0, 255, 204, 0.2);
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent rgba(0, 255, 204, 0.2) transparent transparent;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 255, 204, 0.4);
}

.timeline-item:hover .timeline-dot {
    animation: pulse-dot 1.5s infinite;
}

.timeline-content h3 {
    color: var(--neon-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.timeline-content p {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.5;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 204, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 204, 0);
    }
}

/* Media queries para responsividade da timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 15px;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-dot {
        left: 30px;
        right: auto;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after {
        left: -10px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent rgba(0, 255, 204, 0.2) transparent transparent;
    }
}

@media (max-width: 480px) {
    .timeline-container {
        margin: 30px auto;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-dot {
        left: 10px;
        width: 15px;
        height: 15px;
    }
    
    .timeline-content {
        padding: 10px;
    }
    
    .timeline-content h3 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
}

/* Animações da timeline */
.timeline-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.animate-timeline {
    opacity: 0.7;
    transform: translateX(0);
}

.timeline-item:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* ==== CYBER TIMELINE ==== */
.cyber-timeline-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    background: rgba(10, 10, 20, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.1);
    border: 1px solid rgba(0, 255, 204, 0.1);
}

.cyber-timeline-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.cyber-title-text {
    font-size: 2rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 15px;
    z-index: 2;
}

.cyber-title-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom, transparent, var(--neon-color), transparent);
    opacity: 0.3;
    z-index: 1;
    animation: scan-line 3s ease-in-out infinite;
}

.cyber-timeline {
    position: relative;
    padding: 30px 0;
    min-height: 500px;
}

.timeline-track {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0.3), rgba(0, 255, 255, 0.1));
    z-index: 1;
    overflow: hidden;
}

.timeline-track-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--neon-color), transparent);
    opacity: 0.7;
    animation: track-pulse 3s ease-in-out infinite;
}

.timeline-nodes-connection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cyber-timeline-node {
    position: relative;
    margin-bottom: 100px;
    z-index: 2;
}

.cyber-timeline-node:last-child {
    margin-bottom: 0;
}

.node-core {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--dark-bg);
    border-radius: 50%;
    border: 2px solid var(--neon-color);
    box-shadow: 0 0 15px var(--neon-color);
    z-index: 3;
}

.node-pulse {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    z-index: 2;
    animation: node-pulse 2s ease-in-out infinite;
}

.node-year {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    font-weight: 600;
    color: var(--neon-color);
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    text-align: center;
}

.node-content {
    position: relative;
    width: 45%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.cyber-timeline-node.active .node-content {
    opacity: 1;
    transform: translateY(0);
}

.left-content {
    left: 0;
    margin-right: auto;
    text-align: right;
}

.right-content {
    right: 0;
    margin-left: auto;
    text-align: left;
}

.cyber-card {
    position: relative;
    background: rgba(0, 10, 20, 0.7);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(5px);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cyber-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    z-index: 0;
}

.cyber-card-header {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    z-index: 1;
}

.cyber-card-header h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin: 0;
}

.card-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 255, 0.2);
    mix-blend-mode: overlay;
    opacity: 0;
    z-index: -1;
}

.cyber-card:hover .card-glitch {
    animation: card-glitch 1s ease-in-out;
}

.cyber-card-body {
    position: relative;
    z-index: 1;
}

.cyber-card-body p {
    color: #f0f0f0;
    margin: 0;
    line-height: 1.5;
}

.cyber-card-border {
    position: absolute;
    background: var(--neon-color);
    transition: all 0.3s ease;
}

.cyber-card-border.top,
.cyber-card-border.bottom {
    height: 2px;
    width: 0;
}

.cyber-card-border.left,
.cyber-card-border.right {
    width: 2px;
    height: 0;
}

.cyber-card-border.top {
    top: 0;
    right: 0;
}

.cyber-card-border.right {
    top: 0;
    right: 0;
}

.cyber-card-border.bottom {
    bottom: 0;
    left: 0;
}

.cyber-card-border.left {
    bottom: 0;
    left: 0;
}

.cyber-card:hover .cyber-card-border.top,
.cyber-card:hover .cyber-card-border.bottom {
    width: 100%;
}

.cyber-card:hover .cyber-card-border.left,
.cyber-card:hover .cyber-card-border.right {
    height: 100%;
}

/* Animations */
@keyframes scan-line {
    0% {
        top: -10%;
    }
    100% {
        top: 110%;
    }
}

@keyframes track-pulse {
    0% {
        opacity: 0.3;
        top: -100%;
    }
    100% {
        opacity: 0;
        top: 100%;
    }
}

@keyframes node-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
    }
}

@keyframes card-glitch {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 0.2;
    }
    20% {
        opacity: 0;
    }
    30% {
        opacity: 0.3;
    }
    40% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    60% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .cyber-timeline-node {
        margin-bottom: 70px;
    }

    .timeline-track {
        left: 20px;
    }

    .node-core, .node-pulse {
        left: 20px;
    }

    .node-year {
        left: 20px;
        top: -40px;
    }

    .node-content {
        width: 85%;
        margin-left: 50px !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 480px) {
    .cyber-timeline-node {
        margin-bottom: 50px;
    }

    .timeline-track {
        left: 15px;
    }

    .node-core, .node-pulse {
        left: 15px;
    }

    .node-year {
        left: 15px;
        top: -30px;
    }

    .node-content {
        width: 90%;
        margin-left: 40px !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 380px) {
    .cyber-timeline-node {
        margin-bottom: 40px;
    }

    .timeline-track {
        left: 10px;
    }

    .node-core, .node-pulse {
        left: 10px;
    }

    .node-year {
        left: 10px;
        top: -20px;
    }

    .node-content {
        width: 95%;
        margin-left: 30px !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 320px) {
    .cyber-timeline-node {
        margin-bottom: 30px;
    }

    .timeline-track {
        left: 5px;
    }

    .node-core, .node-pulse {
        left: 5px;
    }

    .node-year {
        left: 5px;
        top: -10px;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 280px) {
    .cyber-timeline-node {
        margin-bottom: 20px;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 240px) {
    .cyber-timeline-node {
        margin-bottom: 15px;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 200px) {
    .cyber-timeline-node {
        margin-bottom: 10px;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 160px) {
    .cyber-timeline-node {
        margin-bottom: 5px;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 120px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 100px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 80px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 60px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 40px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 20px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 10px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 5px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 2px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 1px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: 0px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -1px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -2px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -3px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -4px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -5px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -6px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -7px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -8px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -9px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -10px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -11px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -12px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -13px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -14px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -15px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -16px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -17px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -18px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -19px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -20px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -21px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -22px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -23px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -24px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -25px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -26px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -27px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -28px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -29px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -30px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -31px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -32px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -33px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -34px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -35px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -36px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -37px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -38px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

@media (max-width: -39px) {
    .cyber-timeline-node {
        margin-bottom: 0;
    }

    .timeline-track {
        left: 0;
    }

    .node-core, .node-pulse {
        left: 0;
    }

    .node-year {
        left: 0;
        top: 0;
    }

    .node-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .left-content, .right-content {
        left: 0;
        right: 0;
    }
}

/* Fim das media queries */
