@charset "utf-8";
@media (max-width: 768px) {
    .contact-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100vw;
        min-width: 0;
        padding: 0;
        margin: 0 auto;
        gap: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .contact-socials {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 18px;
        margin-bottom: 18px;
        padding: 0;
    }
    .contact-divider {
        display: none;
    }
    .contact-form-area {
        flex: none;
        width: 100vw;
        max-width: 100vw;
        margin-top: 12px;
        padding: 0 12px;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .contact-form {
        width: 100%;
        max-width: 100vw;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    .neural-btn {
        align-self: stretch;
        margin-top: 18px;
        margin-bottom: 0;
    }
}

.logo-svg {
    width: 50px;
    height: 50px;
    max-width: 100%;
    max-height: 50px;
}

/*
Layout 8Bits.Tec.Br
VERSÃO FINAL E CORRIGIDA PARA LINKS E BOTÕES.
*/

/* CSS Documento*/

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

:root {
    --primary: #00ffff;
    --secondary: #ff00ff;
    --accent: #ffff00;
    --bg-dark: #0a0a0a;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
}

body {
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.03) 2px,
        rgba(0, 255, 255, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

p {
    line-height: 1.7;
}

/* Neural Network Canvas Background */
#neural-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* Navegação */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    background: rgba(10, 10, 10, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

nav.scrolled {
    padding: 10px 50px;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
/* Redes sociais no contato - Desktop */
.contact-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    gap: 18px;
    margin-bottom: 0;
    padding: 0;
}
    text-decoration: none;
    transition: all 0.3s ease;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        gap: 18px !important;
        margin-bottom: 18px !important;
        padding: 0 !important;
    height: 50px;
    position: relative;
}

.logo-text {
    font-family: 'Audiowide', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Menu decorativo e Linhas */
.nav-menu {
    position: relative;
}

.nav-menu::before,
.nav-menu::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 50px;
    background: linear-gradient(90deg, transparent, var(--primary));
    top: 50%;
    transform: translateY(-50%);
}

.nav-menu::before {
    left: -60px;
}

.nav-menu::after {
    right: -60px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav a {
    font-family: 'Audiowide', sans-serif;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 5px 0;
    font-size: 0.85rem;
    text-transform: uppercase;
}

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

nav ul a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Outras Seções*/
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    text-align: center;
    z-index: 10;
    animation: fadeInUp 1s ease;
    position: relative;
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: var(--text-primary);
    letter-spacing: 8px;
    animation: glitch 2s infinite;
}

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

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--primary);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--secondary);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { text-shadow: 0 0 5px rgba(0, 255, 255, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 0, 255, 0.5); }
}

@keyframes glitch-1 {
    0%, 100% { clip: rect(42px, 9999px, 44px, 0); transform: translate(0); }
    50% { clip: rect(12px, 9999px, 59px, 0); transform: translate(-2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { clip: rect(12px, 9999px, 85px, 0); transform: translate(0); }
    50% { clip: rect(78px, 9999px, 93px, 0); transform: translate(2px, 2px); }
}

.subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    margin-top: 20px;
    opacity: 0.9;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Botão Scroll  */
.scroll-btn {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-btn-inner {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.scroll-btn:hover .scroll-btn-inner {
    background: rgba(0, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--primary);
}

.scroll-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    animation: arrowMove 1.5s infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Seções */
section {
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 
                 0 0 20px rgba(0, 255, 255, 0.6),
                 0 0 30px rgba(0, 255, 255, 0.4);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; text-shadow: 0 0 15px rgba(0, 255, 255, 1), 
                                   0 0 30px rgba(0, 255, 255, 0.8),
                                   0 0 45px rgba(0, 255, 255, 0.6); }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 10px var(--primary);
}

/* Glass Cards */
.glass-card {
    background: rgba(20,20,20,0.85); /* vidro escuro, consistente no mobile */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.glass-card:hover::after {
    opacity: 0;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: var(--primary);
}

/* Sobre */
.about-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    padding: 3px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 6rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    position: relative;
    overflow: hidden;
    letter-spacing: 5px;
}

.profile-img::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary), transparent);
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

.about-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: var(--bg-glass);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.stat-label {
    font-family: 'Audiowide', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Projetos Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-card h3 {
    font-family: 'Audiowide', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.project-card p {
    position: relative;
    z-index: 1;
}

.project-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, var(--primary), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.project-card:hover::before {
    animation: shine 0.5s ease;
}

.project-card:hover {
    animation: cyberGlow 0.3s ease forwards;
}

@keyframes cyberGlow {
    0% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.5); }
    100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), inset 0 0 20px rgba(0, 255, 255, 0.1); }
}

@keyframes shine {
    0% { transform: rotate(45deg) translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(45deg) translateY(100%); opacity: 0; }
}

/* Skills */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.skill-node {
    font-family: 'Audiowide', sans-serif;
    width: 120px;
    height: 120px;
    background: var(--bg-glass);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.skill-node::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary), transparent);
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(1.2);
}

.skill-node:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--primary);
}

.skill-node:hover::before {
    opacity: 0.3;
}

/* Contato */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.neural-btn {
    font-family: 'Audiowide', sans-serif;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.neural-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.neural-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Footer */
footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding: 50px 50px 30px;
    margin-top: 100px;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-family: 'Audiowide', sans-serif;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
    transform: translateX(5px);
    display: inline-block;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: transparent !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

.footer-bottom {
    font-family: 'Exo 2', sans-serif;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.footer-bottom a {
    color: white;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Novo estilo para o botão de áudio */
.audio-control-btn {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.audio-control-btn:hover {
    background-color: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary);
}

.hidden {
    display: none;
}

/* Hub Categories Buttons */
.hub-category-btn {
    font-family: 'Audiowide', sans-serif;
    display: block;
    text-align: center;
    padding: 15px 10px;
    width: 120%; 
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    text-decoration: none; 
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    line-height: 1.2;
}

/* Estilo padrão (para o botão 'OUTRAS FERRAMENTAS') */
.hub-category-btn:not(.primary-style):not(.secondary-style):not(.accent-style) {
    background: var(--bg-glass);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.hub-category-btn:not(.primary-style):not(.secondary-style):not(.accent-style):hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Estilo Primário (Ciano) */
.hub-category-btn.primary-style {
    background: rgba(0,255,255,0.75); /* Ciano vidro mais transparente */
    color: var(--text-primary);
    border-color: rgba(0,255,255,0.18);
}

.hub-category-btn.primary-style:hover {
    box-shadow: 0 0 20px var(--primary);
    transform: translateY(-3px) scale(1.02);
}

/* Estilo Secundário (Magenta) */
.hub-category-btn.secondary-style {
    background: rgba(255,0,255,0.75); /* Magenta vidro mais transparente */
    color: var(--text-primary);
    border-color: rgba(255,0,255,0.18);
}

.hub-category-btn.secondary-style:hover {
    box-shadow: 0 0 20px var(--secondary);
    transform: translateY(-3px) scale(1.02);
}

/* Estilo Accent (Amarelo) */
.hub-category-btn.accent-style {
    background: rgba(255,255,0,0.75); /* Amarelo vidro mais transparente */
    color: var(--text-primary);
    border-color: rgba(255,255,0,0.18);
}

.hub-category-btn.accent-style:hover {
    box-shadow: 0 0 20px var(--accent);
    transform: translateY(-3px) scale(1.02);
}


/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .projects-grid {
        gap: 25px;
    }
    
    .glitch {
        font-size: 4rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-svg {
        width: 40px;
        height: 40px;
    }

    .nav-container {
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 15px;
    }

    .nav-menu.active {
        max-height: 400px;
        border-top: 1px solid rgba(0, 255, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    }

    .nav-menu::before,
    .nav-menu::after {
        display: none;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    nav ul li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    .glitch {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero {
        margin-top: 70px;
    }

    .subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    section {
        padding: 50px 20px;
    }

    .footer-content {
        gap: 30px;
        padding: 0 20px;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .neural-btn {
        font-size: 12px;
        padding: 12px 30px;
    }

    .scroll-btn-inner {
        width: 40px;
        height: 40px;
    }

    .scroll-btn {
        bottom: 30px;
    }

    .scroll-btn svg {
        width: 20px;
        height: 20px;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .glass-card {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 12px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .social-links svg {
        width: 16px;
        height: 16px;
    }

    p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-img-wrapper {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .profile-img {
        font-size: 4rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-card {
        padding: 15px;
    }

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

    .project-card h3 {
        font-size: 0.9rem;
    }

    .skill-node {
        width: 100px;
        height: 100px;
        font-size: 0.7rem;
    }

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

    .about-content h3 {
        font-size: 1.5rem;
    }
}

/*
================================================================
CORREÇÃO CRÍTICA FINAL PARA LINKS E BOTÕES (REFORÇADA - PRIORIDADE MÁXIMA)
================================================================
ESTA REGRA É A MAIS IMPORTANTE: REMOVE O SUBILINHADO DE QUALQUER LINK.
*/
a:not(.social-links a):not(.logo-container) {
    text-decoration: none !important; 
    color: unset !important; /* Força a cor a ser herdada do pai ou definida por outra regra */
}

/* As regras antigas que usavam classes mais específicas foram mantidas */
.neural-btn, .scroll-btn, 
.footer-section a, .nav-menu a, .nav-container a,
.social-links a, 
.hub-card a, .link-card a,
.hub-category-btn,
nav a, nav ul a {
    text-decoration: none !important; 
    white-space: nowrap;
}

/* BOTÃO CONTATO NEON TRANSPARENTE */
.botao-flutuante {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
}

.botao-flutuante a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3); /* Fundo semi-transparente */
    backdrop-filter: blur(5px); /* Efeito de vidro embaçado */
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    font-size: 24px;
    border: 2px solid #fff; /* Borda base */
}

/* Efeito Neon Azul (Telefone) */
.botao-flutuante a:first-child {
    color: #00d2ff !important;
    border-color: #00d2ff;
    box-shadow: 0 0 10px #00d2ff, inset 0 0 5px #00d2ff;
}

/* Efeito Neon Verde (WhatsApp) */
.botao-flutuante a.whatsapp {
    color: #25D366 !important;
    border-color: #25D366;
    box-shadow: 0 0 10px #25D366, inset 0 0 5px #25D366;
}

/* Efeito Neon Roxo/Azul (Telegram) */
.botao-flutuante a.telegram {
    color: #0088cc !important;
    border-color: #0088cc;
    box-shadow: 0 0 10px #0088cc, inset 0 0 5px #0088cc;
}

/* Animação ao passar o mouse */
.botao-flutuante a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px white, inset 0 0 10px white;
    background-color: rgba(255, 255, 255, 0.1);
}








