/* ════════════════════════════════════════════════
   TWENTYSIX CRM — foco-widget.css v2
   Con nombres de artistas y modo viernes estratégico
   ════════════════════════════════════════════════ */

.foco-widget {
    background: linear-gradient(135deg, #0c0c0e 0%, #1a1a1f 100%);
    border: 1px solid rgba(232, 255, 71, 0.15);
    border-radius: 16px;
    padding: 24px 28px;
    margin: 0 0 24px 0;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.foco-widget:hover {
    border-color: rgba(232, 255, 71, 0.4);
    box-shadow: 0 8px 32px rgba(232, 255, 71, 0.08);
    transform: translateY(-2px);
}
.foco-widget::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, #e8ff47, transparent);
    opacity: 0.6;
}
.foco-widget.friday::before {
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}
.foco-widget.weekend::before {
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
}
.foco-widget-loading {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    padding: 20px 0;
    text-align: center;
}

.fw-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.fw-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.fw-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #e8ff47;
    box-shadow: 0 0 8px #e8ff47;
    animation: fw-pulse 2s infinite;
}
@keyframes fw-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.fw-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #e8ff47;
    text-transform: uppercase;
}
.fw-day {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.fw-cta {
    font-size: 11px;
    color: #e8ff47;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.fw-cta::after {
    content: ' →';
    transition: transform 0.2s;
}
.foco-widget:hover .fw-cta::after {
    transform: translateX(4px);
    display: inline-block;
}
.foco-widget.friday .fw-cta {
    color: #3b82f6;
}

/* ── Artistas (LUN-JUE) ──────────────────────────── */
.fw-artists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}
.fw-artist {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 14px 16px;
    transition: all 0.2s;
}
.fw-artist:hover {
    background: rgba(232,255,71,0.06);
    border-color: rgba(232,255,71,0.2);
}
.fw-artist-name {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}
.fw-artist-genres {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
    line-height: 1.4;
}
.fw-artist-genres.empty {
    color: rgba(245, 158, 11, 0.7);
    font-style: italic;
}
.fw-artist-time {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    font-family: 'SF Mono', monospace;
    letter-spacing: 0.5px;
}

/* ── Tabs (con NOMBRES en lugar de números) ──────── */
.fw-tabs {
    display: flex;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.fw-tab {
    flex: 1;
    padding: 10px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s;
    min-height: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fw-tab:hover {
    background: rgba(232,255,71,0.05);
    border-color: rgba(232,255,71,0.15);
}
.fw-tab-friday {
    background: rgba(59,130,246,0.05);
    border-color: rgba(59,130,246,0.15);
}
.fw-tab-friday:hover {
    background: rgba(59,130,246,0.1);
    border-color: rgba(59,130,246,0.3);
}
.fw-tab-day {
    font-size: 9px;
    font-weight: 800;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.fw-tab-friday .fw-tab-day {
    color: #3b82f6;
}
.fw-tab-names {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.fw-tab-names em {
    color: rgba(255,255,255,0.25);
    font-style: italic;
    font-weight: 400;
}
.fw-tab-friday .fw-tab-names {
    color: #93c5fd;
    font-weight: 700;
}

/* ── Modo viernes (acciones estratégicas) ────────── */
.fw-friday-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}
.fw-friday-action {
    background: rgba(59,130,246,0.06);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 10px;
    padding: 16px;
    transition: all 0.2s;
    cursor: pointer;
}
.fw-friday-action:hover {
    background: rgba(59,130,246,0.12);
    border-color: rgba(59,130,246,0.4);
    transform: translateY(-2px);
}
.fw-friday-icon {
    font-size: 24px;
    margin-bottom: 8px;
}
.fw-friday-title {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.fw-friday-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

/* ── Modo fin de semana ──────────────────────────── */
.foco-widget.weekend {
    background: linear-gradient(135deg, #1a1a1f 0%, #0c0c0e 100%);
}
.fw-weekend {
    text-align: center;
    padding: 12px 0 18px;
}
.fw-weekend-emoji {
    font-size: 32px;
    margin-bottom: 8px;
}
.fw-weekend-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.fw-weekend-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.fw-week-preview {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.fw-day-preview {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 12px 10px;
    text-align: center;
    transition: all 0.15s;
    min-height: 110px;
    display: flex;
    flex-direction: column;
}
.fw-day-preview:hover {
    background: rgba(232,255,71,0.06);
    border-color: rgba(232,255,71,0.2);
}
.fw-day-preview-name {
    font-size: 9px;
    font-weight: 800;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.fw-day-preview-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.fw-day-preview-artist {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    line-height: 1.3;
}
.fw-day-preview-empty {
    font-size: 10px;
    color: rgba(255,255,255,0.25);
    font-style: italic;
}

.fw-day-preview-friday {
    background: rgba(59,130,246,0.06);
    border-color: rgba(59,130,246,0.15);
}
.fw-day-preview-friday:hover {
    background: rgba(59,130,246,0.12);
    border-color: rgba(59,130,246,0.4);
}
.fw-day-preview-friday .fw-day-preview-name {
    color: #3b82f6;
}
.fw-day-preview-friday-icon {
    font-size: 20px;
    margin-bottom: 6px;
}
.fw-day-preview-friday-label {
    font-size: 9px;
    font-weight: 700;
    color: #93c5fd;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .foco-widget { padding: 16px 18px; }
    .fw-artists { grid-template-columns: 1fr; }
    .fw-friday-grid { grid-template-columns: 1fr 1fr; }
    .fw-week-preview { grid-template-columns: repeat(5, 1fr); gap: 4px; }
    .fw-day-preview { padding: 8px 4px; min-height: 90px; }
    .fw-day-preview-artist { font-size: 9px; }
}