/* ============================================
   CAUÃ DESKTOP - Estilo Cyberpunk/Neon
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(15, 15, 25, 0.9);
    --bg-glass: rgba(20, 20, 35, 0.85);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --purple: #a855f7;
    --purple-glow: rgba(168, 85, 247, 0.5);
    --pink: #ec4899;
    --pink-glow: rgba(236, 72, 153, 0.5);
    --cyan: #22d3ee;
    --cyan-glow: rgba(34, 211, 238, 0.5);
    --blue: #3b82f6;
    --green: #22c55e;
    --discord: #5865f2;
    --spotify: #1db954;
    --github: #333;
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    
    --font-main: 'Outfit', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    user-select: none;
}

/* Efeitos de Fundo */
.scan-lines {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

/* Desktop */
.desktop {
    position: relative;
    width: 100%;
    height: calc(100vh - 52px);
    background: 
        radial-gradient(ellipse at top right, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(34, 211, 238, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 100%);
    overflow: hidden;
    z-index: 1;
}

/* Desktop Icons */
.desktop-icons {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 8px;
    padding: 24px;
    height: 100%;
    align-content: flex-start;
}

.desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: transparent;
    border: 1.5px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 95px;
    position: relative;
}

.desktop-icon:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.desktop-icon:hover .icon-glow {
    opacity: 1;
}

.desktop-icon:active {
    transform: scale(0.95);
}

.icon-wrapper {
    position: relative;
    width: 52px;
    height: 52px;
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.icon-wrapper .icon-img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.desktop-icon:hover .icon-wrapper svg {
    transform: scale(1.1);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.icon-glow.discord { background: radial-gradient(circle, rgba(88, 101, 242, 0.6) 0%, transparent 70%); }
.icon-glow.spotify { background: radial-gradient(circle, rgba(29, 185, 84, 0.6) 0%, transparent 70%); }
.icon-glow.github { background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%); }

.desktop-icon span {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
}

/* Taskbar */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52px;
    background: rgba(15, 15, 25, 0.95);
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1000;
}

.taskbar-left,
.taskbar-right {
    flex: 1;
}

.taskbar-center {
    display: flex;
    justify-content: center;
    flex: 2;
}

.taskbar-right {
    display: flex;
    justify-content: flex-end;
}

.start-button {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.start-button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.windows-logo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    width: 18px;
    height: 18px;
}

.windows-logo div {
    border-radius: 2px;
}

.windows-logo div:nth-child(1) { background: #4fc3f7; }
.windows-logo div:nth-child(2) { background: #81c784; }
.windows-logo div:nth-child(3) { background: #ffb74d; }
.windows-logo div:nth-child(4) { background: #e57373; }

.taskbar-apps {
    display: flex;
    gap: 4px;
}

.taskbar-app {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.taskbar-app::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--cyan);
    border-radius: 2px;
    transition: width 0.2s;
}

.taskbar-app:hover {
    background: rgba(255, 255, 255, 0.1);
}

.taskbar-app.active::after {
    width: 20px;
}

.taskbar-app svg {
    width: 18px;
    height: 18px;
}

.system-tray {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.system-tray:hover {
    background: rgba(255, 255, 255, 0.05);
}

.tray-icons {
    display: flex;
    gap: 8px;
    font-size: 12px;
    opacity: 0.7;
}

.clock-widget {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.clock {
    font-size: 12px;
    font-weight: 500;
}

.date {
    font-size: 10px;
    color: var(--text-secondary);
}

/* Start Menu */
.start-menu {
    position: fixed;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 480px;
    background: var(--bg-glass);
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.start-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.start-menu-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 20px;
}

.start-menu-search svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.start-menu-search input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.start-menu-search input::placeholder {
    color: var(--text-muted);
}

.start-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.start-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.start-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.start-item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
}

.start-item-icon.purple { background: linear-gradient(135deg, #667eea, #764ba2); }
.start-item-icon.pink { background: linear-gradient(135deg, #f093fb, #f5576c); }
.start-item-icon.blue { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.start-item-icon.cyan { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.start-item-icon.discord { background: #5865f2; }
.start-item-icon.spotify { background: #1db954; }

.start-item span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

.start-menu-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.user-profile:hover {
    background: rgba(255, 255, 255, 0.05);
}

.user-avatar-photo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    flex-shrink: 0;
}

.user-avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Windows */
.window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    min-width: 420px;
    max-width: 90vw;
    background: var(--bg-card);
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.window.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.window.minimized {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 100%) scale(0.8);
}

.window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: move;
}

.window-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
}

.window-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.window-dot.purple { background: var(--purple); box-shadow: 0 0 10px var(--purple); }
.window-dot.pink { background: var(--pink); box-shadow: 0 0 10px var(--pink); }
.window-dot.blue { background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.window-dot.cyan { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.window-dot.discord { background: var(--discord); box-shadow: 0 0 10px var(--discord); }
.window-dot.spotify { background: var(--spotify); box-shadow: 0 0 10px var(--spotify); }
.window-dot.github { background: #fff; box-shadow: 0 0 10px rgba(255,255,255,0.5); }

.window-controls {
    display: flex;
    gap: 8px;
}

.window-btn {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.window-btn svg {
    width: 12px;
    height: 12px;
}

.window-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.window-btn.close:hover {
    background: #e53935;
    color: white;
}

.window-content {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
}

/* Profile Card - Sobre Mim */
.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.avatar-photo {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
    flex-shrink: 0;
}

.avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-fallback {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.profile-info h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.tagline {
    color: var(--text-secondary);
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.2s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 15px;
    font-weight: 600;
}

.stat-value.relationship {
    font-size: 12px;
    color: #f472b6;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.project-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    transition: all 0.3s;
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.project-card.coming-soon {
    opacity: 0.5;
    border-style: dashed;
}

.project-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.project-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.project-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.project-tags {
    display: flex;
    gap: 6px;
}

.project-tags span {
    padding: 4px 10px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    font-size: 11px;
    color: var(--purple);
    font-weight: 500;
}

/* Skills */
.skills-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-category h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.skill-icon {
    font-size: 16px;
}

/* Contact Form */
.contact-header {
    text-align: center;
    margin-bottom: 24px;
}

.contact-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    resize: none;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-whatsapp {
    flex: 1;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-email {
    flex: 1;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: white;
}

.btn-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.3);
}

.btn.full-width {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

/* Project Showcase */
.project-showcase {
    text-align: center;
    padding: 20px 0;
}

.project-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.project-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
}

.project-showcase h2 {
    font-size: 24px;
    font-weight: 600;
}

.project-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

/* Spotify Embed */
.spotify-embed {
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.playlist-author {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 16px;
}

.start-item-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.start-item-icon svg {
    width: 100%;
    height: 100%;
}

.start-item-icon.img-icon {
    background: transparent;
    padding: 0;
    overflow: hidden;
}

.start-item-icon.img-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Utmify Showcase */
.utmify-showcase {
    text-align: center;
    padding: 20px 0;
}

.utmify-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.utmify-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.utmify-showcase h2 {
    font-size: 24px;
    font-weight: 600;
}

.utmify-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.revenue-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.2));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.revenue-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.revenue-value {
    font-size: 32px;
    font-weight: 700;
    color: #10b981;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(16, 185, 129, 0.8), 0 0 60px rgba(16, 185, 129, 0.4);
    }
}

.btn-utmify {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-utmify:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.window-dot.green {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.icon-glow.utmify {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
}

/* Skills Professional */
.window-large {
    width: 520px;
    max-width: 90vw;
}

.skills-pro {
    padding: 8px 0;
}

.skills-header {
    text-align: center;
    margin-bottom: 24px;
}

.skills-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.skills-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skills-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.skill-card-pro {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.skill-card-pro:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.skill-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.skill-card-icon svg {
    width: 24px;
    height: 24px;
}

.skill-card-icon.php {
    background: linear-gradient(135deg, #777BB3, #4F5B93);
    color: white;
}

.skill-card-icon.mysql {
    background: linear-gradient(135deg, #00758F, #F29111);
    color: white;
}

.skill-card-icon.saas {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.skill-card-icon.api {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.skill-card-pro h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.skill-card-pro p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.skill-level {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.skill-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    border-radius: 2px;
    transition: width 1s ease;
}

.skills-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tech-tags span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tech-tags span:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: var(--purple);
    color: white;
}

/* Discord Window */
.discord-content {
    padding: 0;
}

.discord-profile {
    text-align: center;
}

.discord-banner {
    height: 80px;
    background: linear-gradient(135deg, #5865f2, #7289da);
}

.discord-avatar-photo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border: 6px solid var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: -40px auto 16px;
    overflow: hidden;
}

.discord-avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discord-user-info h3 {
    font-size: 20px;
    font-weight: 600;
}

.discord-tag {
    color: var(--text-secondary);
    font-size: 14px;
}

.btn-discord {
    margin: 20px 24px 24px;
    background: var(--discord);
    color: white;
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
}

/* Spotify Window */
.spotify-content h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.playlist-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s;
}

.playlist-card:hover {
    background: rgba(29, 185, 84, 0.15);
    transform: translateX(4px);
}

.playlist-cover {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--spotify), #1ed760);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.playlist-card span {
    font-size: 14px;
    font-weight: 500;
}

/* GitHub Window */
.github-content {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 100%);
}

.github-profile {
    text-align: center;
    padding: 20px 0;
}

.github-avatar-photo {
    width: 80px;
    height: 80px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 16px;
    overflow: hidden;
}

.github-avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.github-profile h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.github-profile > p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.github-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.github-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.github-stat .stat-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.github-stat span:last-child {
    font-size: 12px;
    color: var(--text-secondary);
}

.btn-github {
    background: #333;
    color: white;
}

.btn-github:hover {
    background: #444;
    transform: translateY(-2px);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Responsivo */
@media (max-width: 768px) {
    .desktop-icons {
        padding: 16px;
        gap: 4px;
    }

    .desktop-icon {
        width: 80px;
        padding: 10px 12px;
    }

    .icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .window {
        min-width: 95vw;
        max-height: 80vh;
    }

    .start-menu {
        width: calc(100vw - 32px);
        left: 16px;
        right: 16px;
        transform: translateY(20px);
    }

    .start-menu.active {
        transform: translateY(0);
    }

    .start-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid,
    .projects-grid,
    .playlist-grid {
        grid-template-columns: 1fr;
    }
}
