/* =====================================================================
   STYLES.CSS (COMPLETO, ATUALIZADO, ORGANIZADO E COMENTADO POR SESSÃO)
   - Mantém TODAS as estilizações atuais
   - Inclui HOVER “premium” nos .project-card (borda gradiente + glow + sheen)
   - Inclui sheen nos .stat-card
   - HEADER modernizado (glass premium + nav ativo + CTA consistente)
   - Compatível com JS de link ativo por sessão (.is-active / aria-current)
   - Sem duplicidades (cascade limpo)
   - DATA LAYER: sem cor no “grupo pai” (painel), apenas os 3 cards
   ===================================================================== */


/* =====================================================================
   1) TOKENS (VARIÁVEIS)
   ===================================================================== */
:root {
    --bg: #05070a;
    --bg2: #070b10;

    --panel: rgba(255, 255, 255, 0.035);
    --panel2: rgba(255, 255, 255, 0.02);

    --stroke: rgba(255, 255, 255, 0.12);
    --stroke-soft: rgba(255, 255, 255, 0.08);

    --txt: #ffffff;
    --txt-dim: rgba(255, 255, 255, 0.72);
    --txt-soft: rgba(255, 255, 255, 0.55);

    --brand: #32d4fc;
    --brand-2: #6ee7ff;
    --brand-3: #4fb7ff;

    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.22);
    --glow: 0 0 30px rgba(50, 212, 252, 0.16);

    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 12px;
}


/* =====================================================================
   2) BASE / RESET LEVE
   ===================================================================== */
html,
body {
    background: var(--bg);
}

body {
    color: var(--txt);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

/* melhora a âncora com header sticky */
section[id] {
    scroll-margin-top: 92px;
}


/* =====================================================================
   3) BACKGROUND GLOBAL (ANIMADO)
   ===================================================================== */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(circle at 12% 10%, rgba(50, 212, 252, 0.16), transparent 38%),
        radial-gradient(circle at 82% 18%, rgba(50, 212, 252, 0.11), transparent 42%),
        radial-gradient(circle at 55% 88%, rgba(50, 212, 252, 0.09), transparent 45%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.2));

    background-size: 220% 220%;
    animation: bgMove 70s linear infinite;
}

@keyframes bgMove {
    0% {
        background-position: 10% 10%, 85% 20%, 55% 90%, 0 0;
    }

    50% {
        background-position: 90% 14%, 20% 30%, 40% 80%, 0 0;
    }

    100% {
        background-position: 10% 10%, 85% 20%, 55% 90%, 0 0;
    }
}

/* grade sutil */
.site-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.065;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: radial-gradient(circle at 50% 35%, black, transparent 80%);
}

/* vinheta */
.site-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 55%, rgba(0, 0, 0, 0.65) 100%);
    opacity: 0.7;
}


/* =====================================================================
   4) SECTIONS (ESPAÇAMENTO / TÍTULOS)
   ===================================================================== */
.section-wrap {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .section-wrap {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

.section-title {
    font-size: 1.65rem;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.03em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

.section-subtitle {
    color: var(--txt-dim);
    margin-top: 0.45rem;
}


/* =====================================================================
   5) BUTTONS (PRIMARY / GHOST)
   ===================================================================== */
.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.72rem 1.05rem;
    border-radius: 0.9rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition:
        transform 0.22s ease,
        filter 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
    border: 1px solid transparent;
    user-select: none;
}

.btn-primary {
    color: #001018;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 28px rgba(50, 212, 252, 0.25);
}

.btn-primary:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(50, 212, 252, 0.3);
}

.btn-ghost {
    color: var(--txt);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(50, 212, 252, 0.55);
    background: rgba(50, 212, 252, 0.06);
    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(50, 212, 252, 0.1) inset;
}


/* =====================================================================
   6) HERO BADGE + DOT
   ===================================================================== */
.badge-tech {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.86);
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.dot-live {
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 0 14px rgba(50, 212, 252, 0.85);
    animation: pulseDot 1.6s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.18);
        opacity: 0.75;
    }
}


/* =====================================================================
   7) AVATAR (GLOW + BORDA/ANEL + COBRINHA + HOVER)
   ===================================================================== */
.avatar-glow {
    position: absolute;
    inset: -18px;
    z-index: 0;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 30% 20%, rgba(50, 212, 252, 0.28), transparent 55%),
        radial-gradient(circle at 75% 70%, rgba(50, 212, 252, 0.18), transparent 60%);
    filter: blur(18px);
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.avatar-ring {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 1px;
    border-radius: var(--radius-xl);
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(50, 212, 252, 0.08) inset;
}

.avatar-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;

    position: relative;
    z-index: 2;

    border-radius: calc(var(--radius-xl) - 1px);
    border: 1px solid rgba(255, 255, 255, 0.1);

    transition: transform 0.5s ease;
}

.avatar-ring:hover .avatar-img {
    transform: scale(1.05);
}

.avatar-border-snake {
    position: absolute;
    width: 200%;
    height: 200%;
    z-index: 1;

    background: conic-gradient(from 0deg,
            transparent 0%,
            transparent 80%,
            var(--brand) 95%,
            var(--brand-2) 100%);

    animation: snakeRotate 4s linear infinite;
    filter: blur(0.5px);
}

@keyframes snakeRotate {
    to {
        transform: rotate(360deg);
    }
}

.avatar-ring__spin {
    position: absolute;
    inset: -3px;
    border-radius: 28px;
    pointer-events: none;

    background: conic-gradient(from 0deg,
            transparent 0 12%,
            rgba(50, 212, 252, 0.9) 18%,
            rgba(110, 231, 255, 0.95) 28%,
            transparent 42%,
            transparent 58%,
            rgba(50, 212, 252, 0.8) 72%,
            transparent 86%,
            transparent 100%);

    filter: blur(0.2px);
    opacity: 0.85;
    animation: avatarSpin 3.8s linear infinite;

    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;

    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;

    padding: 2px;
}

@keyframes avatarSpin {
    to {
        transform: rotate(360deg);
    }
}


/* =====================================================================
   8) GLASS CARDS
   ===================================================================== */
.glass-card {
    position: relative;
    background: linear-gradient(180deg, var(--panel), var(--panel2));
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover {
    border-color: rgba(50, 212, 252, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 16px 38px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(50, 212, 252, 0.07);
}

.card-glow-line {
    position: absolute;
    top: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(50, 212, 252, 0.7), transparent);
}


/* =====================================================================
   9) PROJECTS: FILTERS (CHIPS)
   ===================================================================== */
.filter-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.92);
    padding: 0.52rem 0.9rem;
    font-weight: 800;
    font-size: 0.92rem;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.filter-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(50, 212, 252, 0.55);
}

.filter-chip[data-active="true"] {
    border-color: rgba(50, 212, 252, 0.95);
    background: rgba(50, 212, 252, 0.14);
    box-shadow:
        0 0 0 1px rgba(50, 212, 252, 0.1) inset,
        0 10px 26px rgba(50, 212, 252, 0.1);
}


/* =====================================================================
   10) PROJECTS: CARDS / IMAGEM / TAG / LINKS / ÍCONES
   + HOVER PREMIUM (borda gradiente + glow interno + sheen)
   ===================================================================== */
.project-card {
    position: relative;
    isolation: isolate;

    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
    border: 1px solid rgba(50, 212, 252, 0.16);
    border-radius: var(--radius-lg);
    overflow: hidden;

    box-shadow: var(--shadow-soft);
    transition:
        transform 0.3s ease,
        box-shadow 0.35s ease,
        border-color 0.3s ease,
        opacity 0.35s ease;
    will-change: transform;
}

.project-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(50, 212, 252, 0.32);
    box-shadow:
        0 18px 52px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(50, 212, 252, 0.08) inset,
        var(--glow);
}

.project-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;

    background: linear-gradient(135deg,
            rgba(50, 212, 252, 0.95),
            rgba(110, 231, 255, 0.40),
            rgba(79, 183, 255, 0.18),
            transparent 70%);

    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;

    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;

    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 3;
    pointer-events: none;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background: radial-gradient(circle at var(--mx, 30%) var(--my, 12%),
            rgba(50, 212, 252, 0.16),
            transparent 55%);

    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
    pointer-events: none;
}

.project-card:hover::after {
    opacity: 1;
}

.card-sheen {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transform: translateX(-120%);
    background: linear-gradient(110deg,
            transparent 30%,
            rgba(255, 255, 255, 0.10) 45%,
            transparent 60%);
    transition: transform 0.65s ease;
    z-index: 2;
    pointer-events: none;
}

.project-card:hover .card-sheen {
    transform: translateX(120%);
}

.project-img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.6s ease;
}

.project-card:hover .project-img {
    transform: scale(1.06);
}

.tag-stack {
    display: inline-block;
    font-size: 0.72rem;
    line-height: 1.1;
    padding: 0.38rem 0.62rem;
    border-radius: 999px;
    color: #eaffff;
    background: rgba(50, 212, 252, 0.16);
    border: 1px solid rgba(50, 212, 252, 0.35);
    max-width: 78%;
}

.link-brand {
    color: var(--brand);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.link-brand:hover {
    opacity: 0.85;
}

.project-card i {
    transition: transform 0.2s ease, color 0.2s ease;
    cursor: help;
}

.project-card:hover i {
    color: var(--brand);
    transform: scale(1.1);
}


/* =====================================================================
   11) REVEAL ANIMATION SAFE (SEM JS NÃO ESCONDE)
   ===================================================================== */
.reveal {
    opacity: 1;
    transform: none;
}

html.js .reveal {
    opacity: 0;
    transform: translateY(14px);
}

html.js .reveal.in {
    animation: revealUp 0.65s ease forwards;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =====================================================================
   12) SKILLS (BG / PILLS / PROGRESS / STATS / CHIPS)
   ===================================================================== */
.skills-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 15%, rgba(50, 212, 252, 0.14), transparent 30%),
        radial-gradient(circle at 85% 25%, rgba(50, 212, 252, 0.12), transparent 35%);
}

.skills-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
}

.mini-pill {
    font-size: 0.72rem;
    padding: 0.32rem 0.62rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(50, 212, 252, 0.3);
    background: rgba(50, 212, 252, 0.12);
    color: #b7f4ff;
    font-weight: 800;
}

.progress-track {
    position: relative;
    height: 0.58rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-fill {
    position: absolute;
    inset-block: 0;
    left: 0;
    border-radius: 999px;

    width: var(--pct, 0%);
    background: linear-gradient(90deg, var(--brand-2), var(--brand), var(--brand-3));
    background-size: 200% 100%;
    animation: progressGradient 3.5s linear infinite;

    transition: width 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes progressGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

html.js .skill-item.is-live .progress-fill {
    animation:
        progressGradient 3.5s linear infinite,
        livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.08);
    }
}

.progress-shine {
    position: absolute;
    inset-block: 0;
    left: 0;
    width: 90px;
    background: rgba(255, 255, 255, 0.26);
    filter: blur(9px);
    animation: shineMove 2.6s linear infinite;
}

@keyframes shineMove {
    0% {
        transform: translateX(-130%);
    }

    100% {
        transform: translateX(700%);
    }
}

.stat-card {
    text-align: center;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.85rem;
}

.stat-number {
    color: var(--brand);
    font-weight: 1000;
    font-size: 1.08rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
}

.skill-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.96);
    font-weight: 800;
    font-size: 0.92rem;
    line-height: 1;
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
    position: relative;
    overflow: hidden;
}

.skill-chip::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #67e8f9;
    box-shadow: 0 0 12px rgba(103, 232, 249, 0.7);
    flex-shrink: 0;
}

.skill-chip::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.12) 45%, transparent 60%);
    transition: transform 500ms ease;
}

.skill-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(103, 232, 249, 0.35);
    background: rgba(103, 232, 249, 0.08);
    box-shadow: 0 0 22px rgba(34, 211, 238, 0.12);
}

.skill-chip:hover::after {
    transform: translateX(120%);
}


/* =====================================================================
   13) PIPELINE PANEL
   ===================================================================== */
.panel-sub {
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.22);
    padding: 1rem;
}

.dot-online {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #86efac;
    box-shadow: 0 0 12px rgba(134, 239, 172, 0.65);
    animation: pulseDot 1.6s infinite;
}

.pipeline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.72);
    border-radius: 0.7rem;
    padding: 0.55rem 0.7rem;
}

.pipeline-row b {
    color: var(--brand);
    font-weight: 1000;
}


/* =====================================================================
   14) FORM
   ===================================================================== */
.form-label {
    display: block;
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 700;
}

.input-field {
    width: 100%;
    border-radius: 0.95rem;
    padding: 0.85rem 0.95rem;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.44);
}

.input-field:focus {
    border-color: rgba(50, 212, 252, 0.6);
    box-shadow: 0 0 0 4px rgba(50, 212, 252, 0.14);
    background: rgba(255, 255, 255, 0.055);
}


/* =====================================================================
   15) MODAL
   ===================================================================== */
#modalPanel {
    animation: modalIn 0.18s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.99);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* =====================================================================
   16) HEADER (MODERNIZADO / GLASS PREMIUM)
   - reto / full-width (compatível com o resto do site)
   - nav com “pill” + underline + estado ativo (aria-current / .is-active)
   - CTA mais consistente
   ===================================================================== */
header.sticky {
    padding: 0 !important;
    margin: 0 !important;
    top: 0 !important;
}

.header-shell {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* micro grid sutil (mesma linguagem do site-bg) */
.header-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .08;
    background-image:
        linear-gradient(rgba(255, 255, 255, .20) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .20) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

/* linha glow no topo */
.header-shell::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(50, 212, 252, .75), transparent);
    opacity: .7;
    pointer-events: none;
}

/* se quiser travar altura por classe */
.header-inner {
    height: 72px;
}

/* Brand */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    transition: transform 0.2s ease;
}

.brand:hover {
    transform: translateY(-1px);
}

.brand-icon-wrap {
    position: relative;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.brand-icon {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--brand);
    font-weight: 1000;
    font-size: 1.1rem;
    border: 1px solid rgba(50, 212, 252, 0.35);
    background:
        radial-gradient(circle at 30% 20%, rgba(50, 212, 252, 0.22), transparent 55%),
        rgba(255, 255, 255, 0.03);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(50, 212, 252, 0.08),
        0 0 22px rgba(50, 212, 252, 0.18);
}

.brand-ping {
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    border: 1px solid rgba(50, 212, 252, 0.18);
    opacity: 0.7;
    animation: brandPing 2.6s ease-out infinite;
}

@keyframes brandPing {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }

    70% {
        transform: scale(1.12);
        opacity: 0;
    }

    100% {
        transform: scale(1.12);
        opacity: 0;
    }
}

.brand-name {
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: -0.02em;
    color: #fff;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .brand-name {
        font-size: 1.05rem;
    }
}

.brand-sub {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.brand-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 0 12px rgba(50, 212, 252, 0.8);
    animation: dotPulse 1.7s infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* NAV links (pílula moderna + underline) */
.nav-tech-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .35rem;

    padding: .55rem .85rem;
    border-radius: 999px;

    color: rgba(255, 255, 255, .78);
    font-weight: 800;
    letter-spacing: -.01em;

    border: 1px solid transparent;
    background: transparent;

    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.nav-tech-link:hover {
    transform: translateY(-1px);
    color: #fff;
    background: rgba(255, 255, 255, .03);
    border-color: rgba(255, 255, 255, .10);
}

.nav-tech-link::before {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, transparent, rgba(50, 212, 252, .95), transparent);
    transform: scaleX(0);
    transition: transform .22s ease;
}

.nav-tech-link:hover::before {
    transform: scaleX(1);
}

/* estado ativo desktop (compatível com JS: .is-active + aria-current) */
.nav-tech-link.is-active,
.nav-tech-link[aria-current="page"] {
    color: #fff;
    background: rgba(50, 212, 252, .08);
    border-color: rgba(50, 212, 252, .25);
    box-shadow: 0 10px 26px rgba(50, 212, 252, .08), 0 0 0 1px rgba(50, 212, 252, .08) inset;
}

.nav-tech-link.is-active::before,
.nav-tech-link[aria-current="page"]::before {
    transform: scaleX(1);
}

/* CTA (Baixar CV) premium + scan mantido */
.cv-tech-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    border-radius: 999px;
    padding: .62rem 1.05rem;
    min-width: 132px;

    font-weight: 900;
    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .28),
        inset 0 1px 0 rgba(255, 255, 255, .08);

    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.cv-tech-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(50, 212, 252, .40);
    box-shadow:
        0 16px 38px rgba(0, 0, 0, .35),
        0 0 0 1px rgba(50, 212, 252, .10) inset,
        0 0 26px rgba(50, 212, 252, .10);
}

.cv-tech-btn__scan {
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    background: linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, .18) 45%, transparent 62%);
    transition: transform .55s ease;
}

.cv-tech-btn:hover .cv-tech-btn__scan {
    transform: translateX(120%);
}

/* Menu mobile — arredondado e consistente */
.menu-tech-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .03);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: border-color .2s ease, background .2s ease;
}

.menu-tech-btn:hover {
    border-color: rgba(50, 212, 252, .38);
    background: rgba(50, 212, 252, .06);
}

.menu-line {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-tech-btn[aria-expanded="true"] .menu-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-tech-btn[aria-expanded="true"] .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-tech-btn[aria-expanded="true"] .menu-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-link {
    position: relative;
    display: block;
    border-radius: 0.7rem;
    padding-inline: 0.7rem;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color .2s ease, box-shadow .2s ease;
}

.mobile-link:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* estado ativo mobile (compatível com JS: .is-active + aria-current) */
.mobile-link.is-active,
.mobile-link[aria-current="page"] {
    color: #fff !important;
    background:
        linear-gradient(180deg, rgba(50, 212, 252, 0.10), rgba(50, 212, 252, 0.04)),
        rgba(255, 255, 255, 0.02);
    border-color: rgba(50, 212, 252, .22);
    box-shadow:
        inset 3px 0 0 rgba(50, 212, 252, .7),
        0 0 0 1px rgba(50, 212, 252, .05);
}


/* =====================================================================
   17) STATS: Reflexo (sheen) no hover
   ===================================================================== */
.stat-card {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.stat-card::after {
    content: "";
    position: absolute;
    inset: -35%;
    background: linear-gradient(110deg,
            transparent 35%,
            rgba(255, 255, 255, .12) 45%,
            rgba(255, 255, 255, .22) 50%,
            rgba(255, 255, 255, .12) 55%,
            transparent 65%);
    transform: translateX(-120%) rotate(10deg);
    transition: transform 700ms ease;
    pointer-events: none;
    opacity: .85;
}

.stat-card:hover::after {
    transform: translateX(120%) rotate(10deg);
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(50, 212, 252, .28);
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .35), 0 0 0 1px rgba(50, 212, 252, .08) inset;
}


/* =====================================================================
   18) REDUCED MOTION (ACESSIBILIDADE)
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .brand-ping,
    .brand-dot,
    .dot-live,
    .dot-online,
    .site-bg {
        animation: none !important;
    }

    .header-shell {
        transition: none !important;
    }
}


/* =========================================
   HEADER: modo sólido ao rolar
   ========================================= */
.header-shell {
    /* estado padrão (topo) */
    background: linear-gradient(to bottom,
            rgba(5, 7, 10, 0.88),
            rgba(5, 7, 10, 0.72)) !important;

    transition:
        background 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease,
        backdrop-filter 220ms ease;
}

/* quando rolar: MAIS SÓLIDO (sem “transparente”) */
header.is-scrolled .header-shell {
    background: rgba(5, 7, 10, 0.98) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;

    border-bottom-color: rgba(255, 255, 255, 0.14) !important;

    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

header.is-scrolled>.h-px {
    opacity: 1 !important;
}


/* =====================================================================
   DATA LAYER — CLEAN SERVICES STYLE (sem copiar)
   - 3 cards principais
   - logo flutuando
   - reflexo (sheen) no hover
   - sem cor no fundo do grupo pai (painel)
   ===================================================================== */

/* wrapper (sem “moldura”) */
.db-clean-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

/* ambientação suave atrás do grid (não vira “faixa”) */
.db-clean-wrap::before {
    content: "";
    position: absolute;
    inset: -20%;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 10%, rgba(50, 212, 252, 0.10), transparent 35%),
        radial-gradient(circle at 92% 18%, rgba(50, 212, 252, 0.06), transparent 32%);
    opacity: .9;
    z-index: 0;
}

/* grid clean estilo “serviços” */
.db-service-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 768px) {
    .db-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

/* card */
.db-service-card {
    position: relative;
    isolation: isolate;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.030), rgba(255, 255, 255, 0.014));
    padding: 16px;
    min-height: 260px;
    overflow: hidden;

    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

/* glow interno */
.db-service-card__glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .95;
}

/* variantes por banco */
.db-glow--supabase {
    background:
        radial-gradient(circle at 78% 18%, rgba(62, 207, 142, 0.16), transparent 46%),
        radial-gradient(circle at 22% 15%, rgba(255, 255, 255, 0.05), transparent 34%);
}

.db-glow--oracle {
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 89, 89, 0.12), transparent 46%),
        radial-gradient(circle at 22% 15%, rgba(255, 255, 255, 0.05), transparent 34%);
}

.db-glow--mysql {
    background:
        radial-gradient(circle at 78% 18%, rgba(79, 183, 255, 0.14), transparent 46%),
        radial-gradient(circle at 22% 15%, rgba(255, 255, 255, 0.05), transparent 34%);
}

/* reflexo (sheen) no hover */
.db-service-card::after {
    content: "";
    position: absolute;
    inset: -40%;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(110deg,
            transparent 35%,
            rgba(255, 255, 255, .10) 45%,
            rgba(255, 255, 255, .18) 50%,
            rgba(255, 255, 255, .10) 55%,
            transparent 65%);

    transform: translateX(-120%) rotate(10deg);
    transition: transform 700ms ease;
    opacity: .9;
}

.db-service-card:hover::after,
.db-service-card:focus-within::after {
    transform: translateX(120%) rotate(10deg);
}

/* hover premium */
.db-service-card:hover,
.db-service-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(50, 212, 252, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.040), rgba(255, 255, 255, 0.020));
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(50, 212, 252, 0.08) inset,
        0 0 22px rgba(50, 212, 252, 0.08);
}

.db-service-card:focus-visible {
    outline: 2px solid rgba(50, 212, 252, 0.5);
    outline-offset: 2px;
}

/* área da logo */
.db-service-card__logoWrap {
    position: relative;
    z-index: 3;
    height: 96px;
    display: grid;
    place-items: center;
    margin-bottom: 8px;
}

/* logo flutuando */
.db-service-card__logo {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.92);
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.35));
    animation: dbLogoFloat 4.2s ease-in-out infinite;
    will-change: transform;
}

/* delay por card */
.db-service-card:nth-child(2) .db-service-card__logo {
    animation-delay: .35s;
}

.db-service-card:nth-child(3) .db-service-card__logo {
    animation-delay: .70s;
}

@keyframes dbLogoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* conteúdo */
.db-service-card__body {
    position: relative;
    z-index: 3;
}

.db-service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.db-service-card__title {
    font-weight: 900;
    color: #fff;
    font-size: 1.02rem;
    letter-spacing: -0.01em;
}

.db-service-card__badge {
    border-radius: 999px;
    padding: 4px 9px;
    font-size: .78rem;
    font-weight: 900;
    white-space: nowrap;
    color: #e8fdff;
    border: 1px solid rgba(50, 212, 252, 0.24);
    background: rgba(50, 212, 252, 0.10);
}

.db-service-card__text {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.74);
    font-size: .86rem;
    line-height: 1.45;
    min-height: 54px;
}

.db-service-card__chips {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* chips menores dentro do card (mais clean) */
.db-service-card__chips .skill-chip {
    padding: 8px 10px;
    font-size: .76rem;
    font-weight: 800;
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce) {

    .db-service-card,
    .db-service-card::after,
    .db-service-card__logo {
        animation: none !important;
        transition: none !important;
    }
}


/* =========================================================
   DATA LAYER — remover “painel pai” (background/borda/sombra)
   - remove cor/contraste do grupo pai
   - não afeta outras .glass-card do site
   ========================================================= */
#data-layer .glass-card,
#data-layer .glass-card:hover {
    background: transparent !important;
    background-image: none !important;
    border-color: transparent !important;
    border-width: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* se existir algum pseudo/overlay no painel do data-layer, neutraliza */
#data-layer .glass-card::before,
#data-layer .glass-card::after {
    content: none !important;
}

/* some com qualquer “linha de glow” do topo do painel */
#data-layer .card-glow-line {
    display: none !important;
}

/* =========================================================
   DATA LAYER — NÃO ter “painel” atrás do título
   Mantém apenas os 3 cards com seus glows
   ========================================================= */

/* mata o overlay que está virando um painel */
#data-layer .db-clean-wrap::before {
    content: none !important;
    display: none !important;
}

/* garante que o wrapper do data-layer não pinte nada */
#data-layer .db-clean-wrap {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* opcional: se algum container pai tiver cor via classes/estilos */
#data-layer .db-clean-wrap,
#data-layer .db-clean-wrap *:is(.glass-card) {
    background-color: transparent !important;
}






/* CARD BASE */
.lang-card {
    position: relative;
    padding: 22px 18px;
    border-radius: 20px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .02));

    border: 1px solid rgba(255, 255, 255, .12);

    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);

    overflow: hidden;
    transition: .35s ease;
}

/* hover geral */
.lang-card:hover {
    transform: translateY(-6px);
    border-color: rgba(50, 212, 252, .35);
}

/* REFLEXO (APENAS HOVER) */
.lang-card::after {
    content: "";
    position: absolute;
    inset: -80%;
    background:
        linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);
    transform: translateX(-120%) rotate(18deg);
    opacity: 0;
}

.lang-card:hover::after {
    animation: reflect 0.9s ease forwards;
    opacity: .7;
}

@keyframes reflect {
    to {
        transform: translateX(220%) rotate(18deg);
    }
}

/* Ícone flutuante */
.lang-float {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(8px);

    animation: floatIcon 4s ease-in-out infinite;
}

.lang-float img {
    width: 24px;
    height: 24px;
}

/* flutuação suave */
@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* textos */
.lang-name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .3px;
}

.lang-mini {
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
}

/* === Skills mini cards (coeso com glass premium) === */
.skill-mini-card {
    position: relative;
    border-radius: 18px;
    padding: 18px 16px 14px;
    border: 1px solid var(--stroke, rgba(255, 255, 255, .12));
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    isolation: isolate;
}

/* hover lift */
.skill-mini-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 212, 252, .32);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .35);
}

/* reflexo APENAS no hover */
.skill-mini-card::after {
    content: "";
    position: absolute;
    inset: -80% -50%;
    width: 60%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
    transform: translateX(-140%) rotate(18deg);
    opacity: 0;
    pointer-events: none;
}

.skill-mini-card:hover::after {
    opacity: .75;
    animation: skillSheen .85s ease forwards;
}

@keyframes skillSheen {
    to {
        transform: translateX(260%) rotate(18deg);
    }
}

/* ícone flutuante */
.skill-float {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
    animation: floaty 3.6s ease-in-out infinite;
}

.skill-float img {
    width: 22px;
    height: 22px;
    display: block;
}

.skill-ico {
    width: 20px;
    height: 20px;
    color: rgba(110, 231, 255, .9);
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.skill-name {
    font-weight: 900;
    letter-spacing: .2px;
    margin-top: 18px;
}

.skill-mini {
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, .68);
}

/* pillars (diferenciais) */
.skills-pillar {
    border-radius: 18px;
    padding: 14px 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
}

.pillar-title {
    font-weight: 800;
}

.pillar-sub {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, .68);
}

/* prova */
.skill-proof {
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .03);
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
}

.skill-proof:hover {
    border-color: rgba(50, 212, 252, .30);
}

@media (prefers-reduced-motion: reduce) {
    .skill-float {
        animation: none !important;
    }

    .skill-mini-card:hover::after {
        animation: none !important;
    }
}


/* === Cards mini (coeso com glass premium) === */
.skill-mini-card {
    position: relative;
    border-radius: 18px;
    padding: 18px 16px 14px;
    border: 1px solid var(--stroke, rgba(255, 255, 255, .12));
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    isolation: isolate;
    min-height: 108px;
}

.skill-mini-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 212, 252, .32);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .35);
}

/* reflexo apenas no hover */
.skill-mini-card::after {
    content: "";
    position: absolute;
    inset: -80% -50%;
    width: 60%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
    transform: translateX(-140%) rotate(18deg);
    opacity: 0;
    pointer-events: none;
}

.skill-mini-card:hover::after {
    opacity: .75;
    animation: skillSheen .85s ease forwards;
}

@keyframes skillSheen {
    to {
        transform: translateX(260%) rotate(18deg);
    }
}

/* ícone flutuante */
.skill-float {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
    animation: floaty 3.6s ease-in-out infinite;
    overflow: hidden;
}

.skill-float img {
    width: 22px;
    height: 22px;
    display: block;
}

.skill-ico {
    width: 20px;
    height: 20px;
    color: rgba(110, 231, 255, .9);
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.skill-name {
    font-weight: 900;
    letter-spacing: .2px;
    margin-top: 16px;
    line-height: 1.1;
}

.skill-mini {
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, .68);
}

.skills-note {
    margin-top: 18px;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
}

/* Projetos publicados */
.proj-proof {
    display: block;
    border-radius: 18px;
    padding: 16px 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .03);
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.proj-proof:hover {
    transform: translateY(-4px);
    border-color: rgba(50, 212, 252, .30);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .30);
}

.proj-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.proj-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(52, 211, 153, .9);
    box-shadow: 0 0 0 6px rgba(52, 211, 153, .12);
}

.proj-title {
    font-weight: 900;
}

.proj-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .68);
}

.proj-cta {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    color: rgba(110, 231, 255, .9);
    font-weight: 800;
}

.skill-proof {
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .03);
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
}

.skill-proof:hover {
    border-color: rgba(50, 212, 252, .30);
}

@media (prefers-reduced-motion: reduce) {
    .skill-float {
        animation: none !important;
    }

    .skill-mini-card:hover::after {
        animation: none !important;
    }
}

