/* ===================== IMPORTS & VARIÁVEIS ===================== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=JetBrains+Mono:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Cores principais - Tema Cyberpunk/Tech */
    --bg-dark: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(18, 18, 26, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    /* Cores de destaque - Neon */
    --neon-cyan: #00f5ff;
    --neon-purple: #bf00ff;
    --neon-pink: #ff00aa;
    --neon-blue: #0066ff;
    --neon-green: #00ff88;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    --gradient-secondary: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    --gradient-accent: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
    
    /* Textos */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b80;
    
    /* Bordas e sombras */
    --border-color: rgba(255, 255, 255, 0.08);
    --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.4);
    --glow-purple: 0 0 20px rgba(191, 0, 255, 0.4);
    --glow-pink: 0 0 30px rgba(255, 0, 170, 0.3);
    
    /* Transições */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}


/* Fundo com grid tecnológico */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Efeito de gradiente animado no fundo */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(191, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 0, 170, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundPulse 8s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* ===================== SCROLLBAR PERSONALIZADA ===================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* ===================== TIPOGRAFIA ===================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.6);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

h3 {
    font-size: 1.3rem;
    color: var(--neon-cyan);
}

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

a {
    color: var(--neon-cyan);
    text-decoration: none;
    position: relative;
    transition: var(--transition-fast);
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

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

a:hover {
    color: var(--text-primary);
    text-shadow: var(--glow-cyan);
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

hr {
    border: none;
    height: 1px;
    background: var(--gradient-primary);
    margin: 15px 0;
    opacity: 0.5;
}

/* ===================== ANIMAÇÕES ===================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.3), 0 0 40px rgba(191, 0, 255, 0.2); }
    50% { box-shadow: 0 0 30px rgba(0, 245, 255, 0.5), 0 0 60px rgba(191, 0, 255, 0.3); }
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: var(--neon-cyan);
        box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
    }
    50% {
        border-color: var(--neon-purple);
        box-shadow: 0 0 15px rgba(191, 0, 255, 0.3);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

/* ===================== TELA DE INÍCIO (RPG STYLE) ===================== */

/* Travar scroll durante intro */
body:has(.start-screen:not(.hidden)),
body:has(.intro-screen:not(.hidden)) {
    overflow: hidden;
    height: 100vh;
}

.start-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(ellipse at center, rgba(10, 10, 20, 0.8) 0%, rgba(0, 0, 0, 1) 100%),
        linear-gradient(180deg, #0a0a14 0%, #1a1a2e 50%, #0a0a14 100%);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 1s ease, transform 1s ease;
}

.start-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 245, 255, 0.03) 2px,
            rgba(0, 245, 255, 0.03) 4px
        );
    pointer-events: none;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

.start-screen.fade-out {
    opacity: 0;
    transform: scale(1.1);
}

.start-screen.hidden {
    display: none;
}

.start-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
}

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

.start-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.start-title h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 
        0 0 10px rgba(0, 245, 255, 0.8),
        0 0 30px rgba(0, 245, 255, 0.5),
        0 0 60px rgba(0, 245, 255, 0.3);
    letter-spacing: 2px;
    margin: 0;
}

.title-decoration {
    font-size: 1.5rem;
    color: var(--neon-purple);
    animation: blink 1s step-end infinite;
    font-family: 'JetBrains Mono', monospace;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.start-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 40px 0;
    animation: fadeIn 2s ease-out 0.5s both;
}

.start-subtitle::before {
    content: '// ';
    color: var(--neon-purple);
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.start-divider {
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), var(--neon-cyan), var(--border-color), transparent);
    margin: 0 auto 50px;
    animation: fadeIn 2s ease-out 0.8s both;
}

/* Botão Tech */
.start-btn {
    position: relative;
    padding: 20px 50px;
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    background: var(--bg-glass);
    border: 1px solid var(--neon-cyan);
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(0, 245, 255, 0.2),
        inset 0 0 20px rgba(0, 245, 255, 0.05);
    /* Animação de entrada */
    opacity: 0;
    animation: buttonAppear 1s ease-out 1s forwards;
}

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

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

.start-btn:hover::before {
    left: 100%;
}

.start-btn:hover {
    color: var(--bg-dark);
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 
        0 0 40px rgba(0, 245, 255, 0.5),
        0 0 80px rgba(0, 245, 255, 0.3);
    transform: translateY(-2px);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-text::before {
    content: '> ';
    color: var(--neon-purple);
}

.start-hint {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 40px;
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
}

.start-hint::before {
    content: '$ ';
    color: var(--neon-cyan);
}

.start-hint::after {
    content: '_';
    animation: cursorBlink 1s step-end infinite;
    color: var(--neon-cyan);
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Partículas de fundo */
.start-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.start-particles::before,
.start-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 
        100px 200px var(--neon-cyan),
        200px 100px var(--neon-purple),
        300px 300px var(--neon-cyan),
        400px 150px var(--neon-purple),
        500px 250px var(--neon-cyan),
        150px 400px var(--neon-purple),
        250px 50px var(--neon-cyan),
        50px 300px var(--neon-purple),
        350px 400px var(--neon-cyan),
        450px 50px var(--neon-purple);
    animation: floatParticles 20s linear infinite;
}

.start-particles::after {
    animation-delay: -10s;
    animation-direction: reverse;
}

@keyframes floatParticles {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0.6; }
}

/* ===================== INTRO CINEMATOGRÁFICA ===================== */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.intro-screen.hidden {
    display: none;
}

.intro-screen.fade-out {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.intro-screen.hidden {
    display: none;
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

/* Balão de Fala do Avatar */
.speech-bubble {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(80px, -280px);
    background: #fff;
    color: #1a1a2e;
    padding: 18px 24px;
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    line-height: 1.5;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 0 3px #1a1a2e;
    animation: bubbleAppear 1.5s ease 3s forwards;
    opacity: 0;
    z-index: 10;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #fff;
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.2));
}

.speech-bubble p {
    margin: 0;
    text-align: center;
}

.speech-bubble strong {
    color: var(--neon-purple);
}

@keyframes bubbleAppear {
    0% {
        opacity: 0;
        transform: translate(80px, -280px) scale(0.5);
    }
    50% {
        transform: translate(80px, -280px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translate(80px, -280px) scale(1);
    }
}

.skip-intro-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.skip-intro-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.skip-intro-btn .skip-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-left: 5px;
    filter: invert(85%) sepia(50%) saturate(1000%) hue-rotate(130deg) brightness(1.2);
    transition: filter 0.3s ease;
}

.skip-intro-btn:hover .skip-icon {
    filter: invert(0%) brightness(0);
}

/* Indicador de som mutado */
.sound-hint {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--neon-cyan);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    border: 1px solid var(--neon-cyan);
    cursor: pointer;
    z-index: 10001;
    animation: pulseHint 2s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.sound-hint:hover {
    background: var(--neon-cyan);
    color: #000;
}

.sound-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes pulseHint {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scale(1.05); }
}

/* Animação de entrada do site */
.App {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease, transform 1s ease;
}

.App.visible {
    opacity: 1;
    transform: scale(1);
}

/* Ajustes da intro em mobile */
@media (max-width: 768px) {
    .intro-video {
        object-fit: cover;
        object-position: center center;
    }

    .speech-bubble {
        transform: translate(-50%, 0);
        left: 50%;
        top: 60px;
        bottom: auto;
        font-size: 0.95rem;
        padding: 14px 18px;
        max-width: 280px;
    }

    .speech-bubble::before {
        top: auto;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%) rotate(0deg);
    }

    @keyframes bubbleAppear {
        0% {
            opacity: 0;
            transform: translate(-50%, -20px) scale(0.5);
        }
        50% {
            transform: translate(-50%, 0) scale(1.1);
        }
        100% {
            opacity: 1;
            transform: translate(-50%, 0) scale(1);
        }
    }

    .skip-intro-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* ===================== SEÇÃO SOBRE (HERO) ===================== */
.sobre {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    gap: 60px;
}

.img {
    position: relative;
}

.img::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
    animation: glow 4s ease-in-out infinite;
}

#gabi {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
                var(--gradient-primary) border-box;
    animation: float 6s ease-in-out infinite, borderGlow 4s ease-in-out infinite;
    transition: var(--transition-smooth);
}

#gabi:hover {
    transform: scale(1.05);
}

.desc {
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.desc h1,
.desc h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.desc h1::after,
.desc h2::after {
    content: '_';
    animation: pulse 1s step-end infinite;
    color: var(--neon-cyan);
}

.desc p {
    font-size: 1.1rem;
    margin: 10px 0;
    padding-left: 15px;
    border-left: 2px solid var(--neon-cyan);
    transition: var(--transition-fast);
}

.desc p:hover {
    padding-left: 25px;
    border-left-color: var(--neon-purple);
}

/* Botão de scroll */
#btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 50;
    animation: arrowBounce 2s ease-in-out infinite;
    filter: drop-shadow(var(--glow-cyan));
    transition: var(--transition-fast);
    opacity: 0;
}

/* Só aparece quando o site está visível */
.App.visible #btn {
    opacity: 1;
}

#btn:hover {
    filter: drop-shadow(0 0 15px var(--neon-cyan));
    transform: translateX(-50%) scale(1.2);
}

.arrow-line {
    fill: none;
    stroke: var(--neon-cyan);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-miterlimit: 10;
    transition: var(--transition-fast);
}

#btn:hover .arrow-line {
    stroke: var(--text-primary);
}

/* ===================== SEÇÃO EXPERIÊNCIAS (JOBS) ===================== */
.jobs {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.titulo {
    text-align: center;
    margin-bottom: 50px;
}

.titulo h2 {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
}

.superior {
    margin-bottom: 80px;
}

/* Timeline horizontal */
.flecha {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 0 10%;
}

.bola {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: var(--glow-cyan);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.bola:hover {
    transform: scale(1.3);
    box-shadow: 0 0 30px var(--neon-cyan);
}

.linha {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    max-width: 200px;
}

.ponta {
    width: 0;
    height: 0;
    border-left: 15px solid var(--neon-purple);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    filter: drop-shadow(var(--glow-purple));
}

.flecha-container {
    display: none;
}

/* Conteúdo da timeline */
.linhaTempo {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 5%;
}

.parte {
    flex: 1;
    max-width: 300px;
    min-width: 250px;
    padding: 25px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.parte:nth-child(1) { animation-delay: 0.1s; }
.parte:nth-child(2) { animation-delay: 0.2s; }
.parte:nth-child(3) { animation-delay: 0.3s; }

.parte:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.parte h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================== CARDS DE HABILIDADES ===================== */
.inferior {
    padding-top: 40px;
}

.card {
    flex: 1;
    max-width: 280px;
    min-width: 250px;
    padding: 25px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

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

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.card p strong {
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card img {
    margin: 5px;
    transition: var(--transition-fast);
    filter: grayscale(0.3);
}

.card:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* Select de certificações */
select {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    outline: none;
}

select:hover, select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
}

.option {
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

/* ===================== MODAL DE CERTIFICADO ===================== */
.imagem-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.imagem-container img {
    max-width: 90%;
    max-height: 70vh;
    border-radius: 16px;
    border: 2px solid var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.imagem-container button {
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.imagem-container button:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-cyan);
}

/* ===================== SEÇÃO PROJETOS ===================== */
.projeto {
    padding: 80px 20px;
    min-height: 100vh;
}

.projeto .titulo {
    margin-bottom: 60px;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cardPro {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cardPro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.cardPro:hover::before {
    transform: scaleX(1);
}

.cardPro:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 245, 255, 0.1);
}

/* Título do card */
.cardPro .card-title {
    margin-bottom: 8px;
}

.cardPro .card-title strong {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    color: var(--text-primary);
}

/* Link do site */
.cardPro .card-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Imagem do projeto */
.cardPro .card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.cardPro:hover .card-img {
    transform: scale(1.02);
    border-color: var(--neon-cyan);
}

/* Descrição */
.cardPro .card-desc {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 15px 0;
}

/* Ícones de tecnologias */
.tech-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.tech-icons img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.cardPro:hover .tech-icons img {
    opacity: 1;
}

.tech-icons img:hover {
    transform: scale(1.2);
    opacity: 1;
}

/* ===================== SEÇÃO CONTATO ===================== */
.contato {
    padding: 80px 20px;
}

.containerContato {
    max-width: 1200px;
    margin: 0 auto;
}

.containerFilho1 {
    margin-bottom: 60px;
}

.containerFilho1 > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Depoimentos */
.depoimentos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

#loading-depoimentos {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
}

.cardDepo {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.cardDepo:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.head img {
    border-radius: 50%;
    border: 2px solid var(--neon-purple);
}

.head p strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.nota {
    margin-bottom: 15px;
}

.nota img {
    width: 20px;
    height: 20px;
    margin: 0 2px;
}

.body {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.data {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: right;
    font-family: 'JetBrains Mono', monospace;
}

/* ===================== CARROSSEL DE DEPOIMENTOS ===================== */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    /* 3 cards de 280px + 2 gaps de 20px = 880px */
    max-width: 880px;
}

.carousel-track {
    display: flex !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
}

.carousel-track .cardDepo {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
}

.carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--neon-cyan);
    background: var(--bg-glass);
    color: var(--neon-cyan);
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.carousel-btn:disabled:hover {
    background: var(--bg-glass);
    color: var(--neon-cyan);
    box-shadow: none;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* Indicadores (dots) */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--neon-purple);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(191, 0, 255, 0.3);
}

.carousel-dot.active {
    background: var(--neon-purple);
    box-shadow: var(--glow-purple);
    transform: scale(1.2);
}

/* Redes sociais */
.containerFilho2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
}

.rede {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    min-width: 200px;
    transition: var(--transition-smooth);
}

.rede:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.rede img {
    transition: var(--transition-smooth);
}

.rede:hover img {
    transform: scale(1.1);
    filter: drop-shadow(var(--glow-cyan));
}

.rede p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Subtítulo de seções */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 10px;
    margin-bottom: 40px;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(191, 0, 255, 0.05) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 20px;
    color: var(--text-primary) !important;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.cta-btn.primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.cta-btn.secondary {
    background: var(--bg-glass);
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
}

.cta-btn.secondary:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

/* Footer */
.footer {
    padding: 40px 20px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border-color);
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-copy {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
}

.footer-host {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer a:hover {
    color: var(--neon-cyan);
}

.footer a strong {
    color: var(--neon-purple);
    transition: var(--transition-fast);
}

.footer a:hover strong {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

/* ===================== RESPONSIVO - MOBILE ===================== */
@media (max-width: 768px) {
    
    /* Evitar scroll horizontal */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .App {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* Body ajustes */
    body::before {
        background-size: 30px 30px;
    }

    /* ===== SEÇÃO SOBRE ===== */
    .sobre {
        flex-direction: column;
        gap: 20px;
        padding: 40px 15px;
        text-align: center;
        min-height: auto;
        padding-top: 60px;
    }

    .img {
        margin-top: 20px;
    }

    .img::before {
        filter: blur(15px);
    }

    #gabi {
        width: 180px;
        height: 180px;
    }

    .desc {
        text-align: center;
        padding: 0 15px;
    }

    .desc h1,
    .desc h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .desc p {
        border-left: none;
        border-bottom: 2px solid var(--neon-cyan);
        padding-left: 0;
        padding-bottom: 8px;
        margin: 12px auto;
        max-width: 280px;
        font-size: 0.95rem;
    }

    .desc p:hover {
        padding-left: 0;
        padding-bottom: 12px;
    }

    #btn {
        width: 35px;
        height: 35px;
        bottom: 20px;
        position: absolute;
    }

    /* ===== SEÇÃO JOBS ===== */
    .jobs {
        padding: 60px 15px;
        min-height: auto;
    }

    .titulo {
        margin-bottom: 30px;
    }

    .titulo h2 {
        font-size: 1.3rem;
        padding: 8px 20px;
    }

    .superior {
        margin-bottom: 50px;
    }

    /* Timeline - esconder no mobile */
    .flecha {
        display: none;
    }

    .linhaTempo {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .parte {
        max-width: 100%;
        width: 100%;
        padding: 20px;
        text-align: center;
        position: relative;
    }

    .parte::before {
        content: '';
        position: absolute;
        left: 50%;
        top: -10px;
        transform: translateX(-50%);
        width: 12px;
        height: 12px;
        background: var(--neon-cyan);
        border-radius: 50%;
        box-shadow: var(--glow-cyan);
    }

    .parte h3 {
        font-size: 1.5rem;
    }

    .parte p {
        font-size: 0.9rem;
    }

    /* ===== CARDS DE HABILIDADES ===== */
    .inferior {
        padding-top: 20px;
    }

    .inferior .linhaTempo {
        gap: 15px;
    }

    .card {
        max-width: 100%;
        width: 100%;
        padding: 20px;
        margin: 0;
    }

    .card p strong {
        font-size: 1.1rem;
    }

    .card img {
        width: 30px;
        margin: 4px;
    }

    #cert {
        font-size: 0.9rem;
    }

    select {
        font-size: 0.85rem;
        padding: 6px 10px;
        width: 100%;
        margin-top: 5px;
    }

    /* ===== MODAL CERTIFICADO ===== */
    .imagem-container {
        padding: 20px;
    }

    .imagem-container img {
        max-width: 100%;
        max-height: 60vh;
        border-radius: 10px;
    }

    .imagem-container button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    /* ===== SEÇÃO PROJETOS ===== */
    .projeto {
        padding: 60px 10px;
        min-height: auto;
        overflow-x: hidden;
    }

    .projeto .titulo {
        margin-bottom: 30px;
    }

    .container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 5px;
        max-width: 100%;
        overflow: hidden;
    }

    .cardPro {
        width: 100%;
        max-width: 100%;
        padding: 18px;
        border-radius: 16px;
        box-sizing: border-box;
    }

    .cardPro:hover {
        transform: translateY(-5px);
    }

    .cardPro .card-title {
        margin-bottom: 6px;
    }

    .cardPro .card-title strong {
        font-size: 1rem;
        word-break: break-word;
    }

    .cardPro .card-link {
        font-size: 0.8rem;
        margin-bottom: 12px;
        word-break: break-all;
    }

    .cardPro .card-img {
        height: 150px;
        border-radius: 10px;
        width: 100%;
    }

    .cardPro .card-desc {
        font-size: 0.85rem;
        margin: 10px 0;
        line-height: 1.5;
    }

    .tech-icons {
        gap: 8px;
        padding-top: 10px;
        flex-wrap: wrap;
    }

    .tech-icons img {
        width: 22px;
        height: 22px;
    }

    /* ===== SEÇÃO CONTATO ===== */
    .contato {
        padding: 60px 15px;
        min-height: auto;
    }

    .containerContato {
        padding: 0;
    }

    .containerFilho1 {
        margin-bottom: 40px;
    }

    .containerFilho1 > p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    /* Carrossel de Depoimentos - 1 card por vez no mobile */
    .carousel-container {
        gap: 8px;
        padding: 10px 0;
        flex-wrap: nowrap;
    }

    .carousel-wrapper {
        /* Largura exata para 1 card */
        max-width: calc(100vw - 90px);
        width: calc(100vw - 90px);
    }

    .carousel-track {
        gap: 15px;
    }

    .carousel-track .cardDepo {
        /* Card ocupa toda a largura do wrapper */
        flex: 0 0 calc(100vw - 90px);
        min-width: calc(100vw - 90px);
        max-width: calc(100vw - 90px);
        box-sizing: border-box;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }

    .carousel-dots {
        margin-top: 15px;
        gap: 8px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .cardDepo {
        padding: 18px;
        width: 100%;
        box-sizing: border-box;
    }

    .head {
        margin-bottom: 10px;
    }

    .head img {
        width: 35px;
        height: 35px;
    }

    .head p strong {
        font-size: 0.9rem;
    }

    .nota img {
        width: 16px;
        height: 16px;
    }

    .body {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .data {
        font-size: 0.75rem;
    }

    /* Redes sociais */
    .containerFilho2 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
    }

    .rede {
        width: 100%;
        max-width: none;
        padding: 20px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
    }

    .rede img {
        width: 40px;
    }

    .rede p {
        font-size: 0.85rem;
        text-align: left;
    }

    /* Footer */
    .footer {
        padding: 30px 15px;
    }

    .footer-content {
        gap: 8px;
    }

    .footer-copy {
        font-size: 0.85rem;
    }

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

/* ===================== RESPONSIVO - MOBILE PEQUENO ===================== */
@media (max-width: 380px) {
    #gabi {
        width: 150px;
        height: 150px;
    }

    .desc h1,
    .desc h2 {
        font-size: 1.5rem;
    }

    .desc p {
        font-size: 0.85rem;
        max-width: 250px;
    }

    .titulo h2 {
        font-size: 1.1rem;
        padding: 6px 15px;
    }

    .parte, .card, .cardPro, .cardDepo, .rede {
        padding: 15px;
    }

    .card img {
        width: 25px;
    }

    .cardPro .card-img {
        height: 120px;
    }

    /* Carrossel ainda mais compacto */
    .carousel-container {
        gap: 5px;
    }

    .carousel-wrapper {
        max-width: calc(100vw - 70px);
        width: calc(100vw - 70px);
    }

    .carousel-track .cardDepo {
        flex: 0 0 calc(100vw - 70px);
        min-width: calc(100vw - 70px);
        max-width: calc(100vw - 70px);
    }

    .carousel-btn {
        width: 28px;
        height: 28px;
    }

    .carousel-btn svg {
        width: 14px;
        height: 14px;
    }

    .cardDepo {
        padding: 15px;
    }

    .cardDepo .body {
        font-size: 0.8rem;
    }
}

/* ===================== EFEITOS EXTRAS ===================== */

/* Efeito de texto digitando no título */
.titulo h2::before {
    content: '// ';
    color: var(--text-muted);
    font-weight: 400;
}

/* Seleção de texto */
::selection {
    background: var(--neon-cyan);
    color: var(--bg-dark);
}

/* Foco para acessibilidade */
:focus-visible {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 4px;
}

/* Animação suave para todos os elementos com hover */
.card, .cardPro, .cardDepo, .rede, .parte {
    will-change: transform;
}

/* Animação dos títulos - sempre visíveis */
.titulo h2 {
    opacity: 1 !important;
    visibility: visible !important;
}

.animate-title {
    transform: translateY(15px);
    transition: transform 0.6s ease, text-shadow 0.6s ease;
}

.animate-title.visible {
    transform: translateY(0);
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.7);
}

/* ===================== BOTÃO WHATSAPP FLUTUANTE ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green), #25D366);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    z-index: -1;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 
        0 8px 30px rgba(37, 211, 102, 0.5),
        0 0 40px rgba(0, 255, 136, 0.3);
}

.whatsapp-float:hover::after {
    display: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    z-index: 1;
}

.whatsapp-float:hover svg {
    transform: rotate(-10deg) scale(1.1);
}

/* Efeito de pulso */
.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s ease-out infinite;
    z-index: -2;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'JetBrains Mono', monospace;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    border: 1px solid var(--neon-green);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--neon-green);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Responsivo */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ===================== ARKANOID EASTER EGG ===================== */

/* Botão Easter Egg (discreto) */
.easter-egg-btn {
    position: fixed;
    bottom: 100px;
    left: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.easter-egg-btn:hover {
    opacity: 1;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    transform: scale(1.1);
}

/* Modal do Arkanoid */
.arkanoid-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 15, 0.95);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(10px);
}

.arkanoid-modal.active {
    opacity: 1;
    visibility: visible;
}

.arkanoid-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    max-width: 100%;
    max-height: 100%;
}

.arkanoid-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.arkanoid-close:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    border-color: var(--neon-cyan);
}

#arkanoid-canvas {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 
        0 0 30px rgba(0, 245, 255, 0.1),
        inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.arkanoid-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.arkanoid-btn {
    padding: 10px 25px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--neon-cyan);
    background: var(--bg-glass);
    border: 1px solid var(--neon-cyan);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arkanoid-btn:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
}

/* Responsivo */
@media (max-width: 768px) {
    .easter-egg-btn {
        bottom: 90px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .arkanoid-container {
        padding: 10px;
    }

    .arkanoid-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
    }

    .arkanoid-footer {
        gap: 10px;
    }

    .arkanoid-btn {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
}
