/* ================================================================
   GLOBAL
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Fira+Code:wght@400;600&display=swap');

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

body {
    font-family: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 56px;
    background-color: #080711;
    color: #ffffff;
    overflow-x: hidden;
}

.section-title {
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #0d6efd;
    margin: 0.5rem auto 0;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
    background-color: #1a252f !important;
}

/* ================================================================
   HERO SECTION (com fundo do banner)
   ================================================================ */
.hero-section {
    background: linear-gradient(135deg, #070510 0%, #0b091a 50%, #0d1b2a 100%);
    min-height: 100vh;
    padding-top: 60px;
    position: relative;
}

/* ================================================================
   SCANLINE (efeito sci-fi)
   ================================================================ */
.scanline {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, rgba(6, 182, 212, 0.8), transparent);
    position: absolute;
    top: 0;
    left: 0;
    animation: scan 6s linear infinite;
    opacity: 0.6;
    pointer-events: none;
    z-index: 10;
}

@keyframes scan {
    0% { top: 0%; }
    100% { top: 100%; }
}

/* ================================================================
   PROFILE IMAGE
   ================================================================ */
.profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 5px solid rgba(255,255,255,0.2);
    transition: transform 0.5s ease;
}
.profile-img:hover {
    transform: scale(1.05);
}

/* ================================================================
   HEXÁGONOS - VERSÃO OTIMIZADA COM CORES NÍTIDAS
   ================================================================ */
.hexagon {
    position: relative;
    width: 48px;
    height: 55px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 3px;
    cursor: default;
}

.hexagon::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(8, 7, 17, 0.92);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.hexagon-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* ================================================================
   CORES DOS ÍCONES - NÍTIDAS E VIBRANTES
   ================================================================ */

/* 🌀 Cyan - Linguagens */
.hexagon-cyan .hexagon-content i,
.hexagon-cyan .hexagon-content .colored {
    color: #22d3ee !important;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.6));
}

/* 🟣 Purple - TypeScript, Go, Java */
.hexagon-purple .hexagon-content i,
.hexagon-purple .hexagon-content .colored {
    color: #a855f7 !important;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
}

/* 🟠 Orange - Cloud */
.hexagon-orange .hexagon-content i,
.hexagon-orange .hexagon-content .colored {
    color: #fb923c !important;
    filter: drop-shadow(0 0 8px rgba(251, 146, 60, 0.6));
}

/* 🟡 Yellow - Big Data/BI */
.hexagon-yellow .hexagon-content i,
.hexagon-yellow .hexagon-content .colored {
    color: #facc15 !important;
    filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.6));
}

/* 🟢 Emerald - DevSecOps */
.hexagon-emerald .hexagon-content i,
.hexagon-emerald .hexagon-content .colored {
    color: #34d399 !important;
    filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.6));
}

/* 🔵 Blue - DevOps Tools */
.hexagon-blue .hexagon-content i,
.hexagon-blue .hexagon-content .colored {
    color: #60a5fa !important;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.6));
}

/* 🔴 Red - CI/CD/Security */
.hexagon-red .hexagon-content i,
.hexagon-red .hexagon-content .colored {
    color: #f87171 !important;
    filter: drop-shadow(0 0 8px rgba(248, 113, 113, 0.6));
}

/* Ícone de Segurança (Font Awesome) */
.hexagon-emerald .hexagon-content .fa-shield-halved {
    color: #34d399 !important;
    filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.6));
}

/* Power BI - barras customizadas */
.hexagon-yellow .hexagon-content .bg-yellow-500 {
    background-color: #facc15 !important;
    box-shadow: 0 0 6px rgba(250, 204, 21, 0.5);
}
.hexagon-yellow .hexagon-content .bg-amber-400 {
    background-color: #f59e0b !important;
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.5);
}
.hexagon-yellow .hexagon-content .bg-yellow-300 {
    background-color: #fde047 !important;
    box-shadow: 0 0 6px rgba(253, 224, 71, 0.5);
}

/* ================================================================
   HOVER DOS HEXÁGONOS - BRILHO INTENSO
   ================================================================ */
.hexagon:hover {
    transform: scale(1.2) translateY(-6px);
    z-index: 20;
}

.hexagon-cyan:hover {
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.8);
    background: rgba(34, 211, 238, 0.2);
}
.hexagon-cyan:hover .hexagon-content i,
.hexagon-cyan:hover .hexagon-content .colored {
    color: #ffffff !important;
    filter: drop-shadow(0 0 16px rgba(34, 211, 238, 1));
}

.hexagon-purple:hover {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.8);
    background: rgba(168, 85, 247, 0.2);
}
.hexagon-purple:hover .hexagon-content i,
.hexagon-purple:hover .hexagon-content .colored {
    color: #ffffff !important;
    filter: drop-shadow(0 0 16px rgba(168, 85, 247, 1));
}

.hexagon-orange:hover {
    box-shadow: 0 0 40px rgba(251, 146, 60, 0.8);
    background: rgba(251, 146, 60, 0.2);
}
.hexagon-orange:hover .hexagon-content i,
.hexagon-orange:hover .hexagon-content .colored {
    color: #ffffff !important;
    filter: drop-shadow(0 0 16px rgba(251, 146, 60, 1));
}

.hexagon-yellow:hover {
    box-shadow: 0 0 40px rgba(250, 204, 21, 0.8);
    background: rgba(250, 204, 21, 0.2);
}
.hexagon-yellow:hover .hexagon-content i,
.hexagon-yellow:hover .hexagon-content .colored {
    color: #ffffff !important;
    filter: drop-shadow(0 0 16px rgba(250, 204, 21, 1));
}

.hexagon-emerald:hover {
    box-shadow: 0 0 40px rgba(52, 211, 153, 0.8);
    background: rgba(52, 211, 153, 0.2);
}
.hexagon-emerald:hover .hexagon-content i,
.hexagon-emerald:hover .hexagon-content .colored {
    color: #ffffff !important;
    filter: drop-shadow(0 0 16px rgba(52, 211, 153, 1));
}
.hexagon-emerald:hover .hexagon-content .fa-shield-halved {
    color: #ffffff !important;
    filter: drop-shadow(0 0 16px rgba(52, 211, 153, 1));
}

.hexagon-blue:hover {
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.8);
    background: rgba(96, 165, 250, 0.2);
}
.hexagon-blue:hover .hexagon-content i,
.hexagon-blue:hover .hexagon-content .colored {
    color: #ffffff !important;
    filter: drop-shadow(0 0 16px rgba(96, 165, 250, 1));
}

.hexagon-red:hover {
    box-shadow: 0 0 40px rgba(248, 113, 113, 0.8);
    background: rgba(248, 113, 113, 0.2);
}
.hexagon-red:hover .hexagon-content i,
.hexagon-red:hover .hexagon-content .colored {
    color: #ffffff !important;
    filter: drop-shadow(0 0 16px rgba(248, 113, 113, 1));
}

/* ================================================================
   TECH GROUPS (organização dos hexágonos)
   ================================================================ */
.tech-group {
    background: rgba(255,255,255,0.04);
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(4px);
}

.tech-group .badge {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(0,0,0,0.5) !important;
    border: 1px solid rgba(255,255,255,0.08);
}

/* ================================================================
   STAT BOXES
   ================================================================ */
.stat-box {
    transition: transform 0.3s ease;
}
.stat-box:hover {
    transform: translateY(-5px);
}

/* ================================================================
   SKILL CARDS
   ================================================================ */
.skill-card {
    transition: all 0.3s ease;
}
.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}
.skill-icon {
    font-size: 2.5rem;
}

/* ================================================================
   EXPERIENCE CARDS
   ================================================================ */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* ================================================================
   CÓDIGO FLUTUANTE (background decorativo)
   ================================================================ */
.code-bg {
    font-family: 'Fira Code', monospace;
    pointer-events: none;
    user-select: none;
}

/* ================================================================
   TEXT COLORS (utilitários)
   ================================================================ */
.text-cyan-300 { color: #67e8f9; }
.text-purple-400 { color: #c084fc; }
.text-amber-400 { color: #fbbf24; }
.text-emerald-400 { color: #34d399; }
.text-orange-300 { color: #fdba74; }
.text-yellow-300 { color: #fde047; }

.border-cyan-400 { border-color: #22d3ee !important; }

.btn-outline-cyan {
    color: #22d3ee;
    border-color: #22d3ee;
}
.btn-outline-cyan:hover {
    background-color: #22d3ee;
    color: #000;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }
    .profile-img {
        width: 140px;
        height: 140px;
    }
    .hexagon {
        width: 40px;
        height: 46px;
        margin: 2px;
    }
    .hexagon-content {
        font-size: 1.2rem;
    }
    .tech-group {
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .hexagon {
        width: 34px;
        height: 40px;
        margin: 1px;
    }
    .hexagon-content {
        font-size: 1rem;
    }
    .tech-group {
        padding: 4px 6px;
    }
    .tech-group .badge {
        font-size: 0.6rem;
    }
}