/* Status Pulse Badge */
.status-pulse-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(132, 204, 22, 0.1);
    border: 1px solid rgba(132, 204, 22, 0.3);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #84cc16;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.status-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #84cc16;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(132, 204, 22, 0.7);
    animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(132, 204, 22, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(132, 204, 22, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(132, 204, 22, 0); }
}

/* Key-Value Data Grid */
.about-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.info-card-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 14px;
    transition: all 0.25s ease;
}
.info-card-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(154, 205, 50, 0.3);
    transform: translateY(-2px);
}
.info-card-item .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 3px;
    display: block;
}
.info-card-item .value {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
}

/* Stats Glow */
.box-stats-enhanced {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.box-stats-enhanced:hover {
    transform: translateY(-4px);
    border-color: rgba(154, 205, 50, 0.4) !important;
    box-shadow: 0 10px 25px rgba(154, 205, 50, 0.15);
}
.box-stats-enhanced .stat-watermark {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 55px;
    opacity: 0.05;
    color: #fff;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.box-stats-enhanced:hover .stat-watermark {
    opacity: 0.15;
    color: #9acd32;
}

/* ==========================================================================
   SECCIÓN DE HABILIDADES PRO (DASHBOARD METRICS)
   ========================================================================== */
.skill-metric-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 18px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.skill-metric-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(154, 205, 50, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.skill-metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.skill-title {
    font-size: 14px;
    font-weight: 700;
    color: #f3f3f3;
    margin: 0;
    letter-spacing: 0.3px;
}
.skill-badge-percent {
    font-size: 11px;
    font-weight: 800;
    color: #9acd32;
    background: rgba(154, 205, 50, 0.12);
    border: 1px solid rgba(154, 205, 50, 0.25);
    padding: 3px 9px;
    border-radius: 999px;
}

.skill-progress-track {
    width: 100%;
    height: 7px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
.skill-progress-fill {
    height: 100%;
    width: 0%; /* Animado por JS */
    background: linear-gradient(90deg, #84cc16 0%, #9acd32 100%);
    border-radius: 999px;
    transition: width 1.2s cubic-bezier(0.1, 0.5, 0.1, 1);
    box-shadow: 0 0 12px rgba(154, 205, 50, 0.4);
}

/* Mobile Responsive Timeline */
@media (max-width: 991.98px) {
    .about-info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .horizontal-timeline-container {
        overflow: visible !important;
    }
    .horizontal-timeline {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        position: relative;
        padding-left: 20px;
    }
    .horizontal-timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        bottom: 10px;
        width: 2px;
        background: linear-gradient(180deg, #9acd32 0%, rgba(154, 205, 50, 0.1) 100%);
    }
    .horizontal-timeline .timeline-item {
        width: 100% !important;
        margin-right: 0 !important;
        position: relative;
    }
    .horizontal-timeline .timeline-item::after {
        content: '';
        position: absolute;
        left: -25px;
        top: 25px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #9acd32;
        box-shadow: 0 0 10px #9acd32;
    }
}