/* ============================================================
   FVV AGENDA v1.1.0 – Frontend CSS
   Prefijo .fvv- en todas las clases para no colisionar con Flatsome.
   TODO en implementación real:
   - Ajustar .fvv-agenda-wrap max-width y padding para pantalla ancha
   - Revisar tamaños en contexto WordPress/Flatsome
   ============================================================ */

:root {
    /* Identidad Festival Viva Voz 2026 (navy + dorado, igual que la landing) */
    --fvv-bg:       transparent;
    --fvv-card:     rgba(24, 29, 59, 0.55);
    --fvv-hover:    rgba(24, 29, 59, 0.92);
    --fvv-deep:     #0a0f2c;
    --fvv-deep2:    #090e28;
    --fvv-gold:     #fccf00;
    --fvv-gold-dk:  #cfa900;
    --fvv-text:     #dee0ff;
    --fvv-muted:    #8b93bd;
    --fvv-border:   rgba(181, 196, 255, 0.14);
    --fvv-red:      #e63946;
    --fvv-blue:     #4a90e2;
    --fvv-green:    #34d399;
    --fvv-purple:   #a855f7;
    --fvv-orange:   #f97316;
    --fvv-r:        10px;
}

.fvv-agenda-wrap {
    font-family: 'Manrope', 'Outfit', system-ui, sans-serif;
    background: var(--fvv-bg);
    color: var(--fvv-text);
    width: 100%;
    margin: 0 auto;
    padding: 14px 0 48px;
}
/* En pantallas medianas (sin tier ancho) sí se centra acotado */
@media (max-width: 1279px) {
    .fvv-agenda-wrap { max-width: 1080px; }
}

/* ── SECCIONES (Agenda profesional / Semana Viva Voz) ── */
.fvv-sec { margin-bottom: 42px; }
.fvv-sec-hdr { margin: 8px 0 6px; padding: 18px 0 4px; }
.fvv-sec-kicker {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--fvv-gold); margin-bottom: 6px;
}
.fvv-sec-tit {
    font-family: 'Epilogue', sans-serif;
    font-size: 34px; font-weight: 900; line-height: 1.05;
    color: #fff; margin: 0 0 6px; letter-spacing: -0.5px;
}
.fvv-sec-tit-sm { font-size: 24px; color: var(--fvv-text); }
.fvv-sec-sub { font-size: 13px; color: var(--fvv-muted); margin: 0 0 4px; }

/* ── SEMANA VIVA VOZ: botón flotante (esquina inferior izquierda) ── */
.fvv-fab-previa {
    position: fixed; left: 20px; bottom: 20px; z-index: 9990;
    display: flex; align-items: center; gap: 10px;
    background: rgba(14, 19, 52, 0.92);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border: 1px solid rgba(252, 207, 0, 0.45);
    border-radius: 100px; padding: 10px 20px 10px 14px;
    cursor: pointer; text-align: left;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.5);
    transition: transform .2s, border-color .2s, box-shadow .2s, opacity .2s;
}
.fvv-fab-previa:hover { transform: translateY(-2px); border-color: var(--fvv-gold); box-shadow: 0 14px 40px rgba(252, 207, 0, 0.18); }
.fvv-fab-previa.fvv-fab-dim { opacity: .4; }
.fvv-fab-ico { font-size: 20px; line-height: 1; }
.fvv-fab-txt b {
    display: block; font-family: 'Space Grotesk', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--fvv-gold); line-height: 1.2;
}
.fvv-fab-txt small { display: block; font-size: 10px; color: var(--fvv-muted); margin-top: 1px; }

/* Backdrop + panel lateral */
.fvv-previa-backdrop {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(3, 6, 20, 0.65);
    -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
    opacity: 0; pointer-events: none; transition: opacity .25s;
}
.fvv-previa-backdrop.fvv-open { opacity: 1; pointer-events: auto; }

.fvv-previa-panel {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 10001;
    width: min(540px, 100vw);
    background: #080d26;
    border-right: 1px solid rgba(252, 207, 0, 0.25);
    box-shadow: 30px 0 80px rgba(0, 0, 0, 0.55);
    transform: translateX(-103%);
    transition: transform .3s ease;
    overflow-y: auto; overscroll-behavior: contain;
    padding: 24px 22px 48px;
}
.fvv-previa-panel.fvv-open { transform: none; }
body.fvv-previa-lock { overflow: hidden; }

.fvv-previa-head {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 12px; margin-bottom: 10px;
}
.fvv-previa-cls {
    flex-shrink: 0; background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(181, 196, 255, 0.3); color: #fff;
    width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
    font-size: 14px; display: flex; align-items: center; justify-content: center;
    transition: background .15s, border-color .15s;
}
.fvv-previa-cls:hover { background: var(--fvv-red); border-color: var(--fvv-red); }

@media (max-width: 560px) {
    .fvv-fab-previa { left: 12px; bottom: 12px; padding: 9px 16px 9px 12px; }
    .fvv-previa-panel { width: 100vw; padding: 18px 14px 40px; }
}
/* Pantallas muy angostas: FAB compacto para no chocar con la burbuja del asistente */
@media (max-width: 430px) {
    .fvv-fab-previa { padding: 8px 14px 8px 11px; gap: 7px; }
    .fvv-fab-txt b { font-size: 11px; letter-spacing: 0.8px; }
    .fvv-fab-txt small { display: none; }
    .fvv-fab-ico { font-size: 17px; }
}
/* En la página de la agenda el botón fijo "Comprar entradas" del sitio sobra:
   choca con el FAB de Semana Viva Voz y recarga la esquina inferior.
   (body + elemento para ganarle al CSS del shell que se imprime en el footer) */
body a.vv-sticky-entradas,
body .vv-sticky-entradas { display: none !important; }

/* ── FILTROS ── */
.fvv-filtros { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }

.fvv-filtros select {
    background: var(--fvv-deep);
    border: 1px solid var(--fvv-border);
    color: var(--fvv-text);
    border-radius: 7px;
    padding: 8px 28px 8px 11px;
    font-size: 12px;
    cursor: pointer;
    flex: 1;
    min-width: 120px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ffcc00' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 9px center;
    font-family: inherit;
}
.fvv-filtros select:focus { outline: none; border-color: var(--fvv-gold); }

/* Blindaje contra los estilos de select del tema (Flatsome fija height/line-height
   y corta el texto verticalmente) */
.fvv-agenda-wrap .fvv-filtros select {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    line-height: 1.35 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    text-overflow: ellipsis;
}
.fvv-agenda-wrap .fvv-filtros .fvv-btn-reset,
.fvv-agenda-wrap .fvv-toggle-previa,
.fvv-agenda-wrap .fvv-dianav-chip {
    height: auto !important;
    min-height: 0 !important;
    line-height: 1.35 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.fvv-btn-reset {
    background: transparent;
    border: 1px solid var(--fvv-border);
    color: var(--fvv-muted);
    border-radius: 7px;
    padding: 8px 13px;
    font-size: 11px;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}
.fvv-btn-reset:hover { border-color: var(--fvv-red); color: var(--fvv-red); }

.fvv-contador { font-size: 11px; color: var(--fvv-muted); margin-bottom: 12px; }
.fvv-contador b { color: var(--fvv-gold); }

/* ── CABECERA DÍA ── */
.fvv-dia-hdr { display: flex; align-items: center; margin: 26px 0 10px; }
.fvv-dia-num {
    font-size: 52px; /* TODO pantalla ancha: 64–72px */
    font-weight: 800;
    line-height: 1;
    color: var(--fvv-gold);
    min-width: 68px;
    text-align: center;
}
.fvv-dia-info { border-left: 2px solid var(--fvv-gold-dk); padding-left: 13px; }
.fvv-dia-dow  { font-size: 16px; font-weight: 700; color: var(--fvv-text); text-transform: uppercase; letter-spacing: .5px; line-height: 1.1; }
.fvv-dia-mes  { font-size: 11px; color: var(--fvv-muted); margin-top: 2px; }

/* ── CARD ── */
.fvv-wrap { position: relative; }
.fvv-wrap:not(.fvv-open-wrap) { margin-bottom: 8px; }

.fvv-card {
    display: grid;
    grid-template-columns: 78px 70px 1fr auto auto;
    align-items: stretch;
    background: var(--fvv-card);
    border: 1px solid var(--fvv-border);
    border-radius: var(--fvv-r);
    cursor: pointer;
    transition: border-color .15s, background .15s;
    overflow: hidden;
    min-height: 74px; /* TODO pantalla ancha: 84px */
    position: relative;
    z-index: 1;
}
.fvv-card:hover                { border-color: var(--fvv-gold); background: var(--fvv-hover); }
.fvv-card.fvv-active           { border-color: var(--fvv-gold); border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-bottom-color: transparent; z-index: 3; background: var(--fvv-hover); }

.fvv-col-hora { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 10px 5px; border-right: 1px solid var(--fvv-border); background: var(--fvv-deep); }
.fvv-hora-ini { font-size: 19px; font-weight: 800; color: var(--fvv-gold); line-height: 1; letter-spacing: -.5px; text-align: center; } /* TODO pantalla ancha: 22–24px */
.fvv-hora-sep { font-size: 8px; color: rgba(181,196,255,.3); margin: 2px 0; }
.fvv-hora-fin { font-size: 10px; color: var(--fvv-muted); text-align: center; line-height: 1.2; }

.fvv-col-foto { display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--fvv-border); background: var(--fvv-deep2); overflow: hidden; }
.fvv-col-foto img { width: 70px; height: 100%; object-fit: cover; object-position: top; display: block; }
.fvv-avt { width: 44px; height: 44px; border-radius: 50%; background: #181d3b; border: 1.5px solid rgba(181,196,255,.25); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--fvv-gold); }

.fvv-col-body { padding: 11px 14px; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.fvv-col-extract { display: none; }
.fvv-titulo { font-size: 14px; font-weight: 700; color: var(--fvv-text); margin-bottom: 3px; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } /* TODO pantalla ancha: 15–16px */
.fvv-speaker { font-size: 11px; color: var(--fvv-gold-dk); margin-bottom: 5px; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fvv-badges { display: flex; flex-wrap: wrap; gap: 3px; }

.fvv-b         { display: inline-flex; align-items: center; font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 20px; line-height: 1.5; white-space: nowrap; }
.fvv-tag-gold  { background: var(--fvv-gold);   color: #000; }
.fvv-tag-red   { background: var(--fvv-red);    color: #fff; }
.fvv-tag-blue  { background: var(--fvv-blue);   color: #fff; }
.fvv-tag-green { background: var(--fvv-green);  color: #000; }
.fvv-tag-purple{ background: var(--fvv-purple); color: #fff; }
.fvv-tag-orange{ background: var(--fvv-orange); color: #fff; }
.fvv-tag-acc   { background: transparent; border: 1px solid var(--fvv-border); color: var(--fvv-muted); }

/* Columna lugar — link Maps */
.fvv-col-lugar {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 8px 10px; border-left: 1px solid var(--fvv-border); background: var(--fvv-deep);
    min-width: 86px; max-width: 100px; text-align: center;
    text-decoration: none; cursor: pointer; transition: background .15s;
}
.fvv-col-lugar:hover                          { background: rgba(18,52,36,.55); }
.fvv-col-lugar:hover .fvv-lg-txt,
.fvv-col-lugar:hover .fvv-lg-pin,
.fvv-col-lugar:hover .fvv-lg-maps            { color: var(--fvv-green); }
.fvv-lg-pin  { font-size: 14px; color: rgba(181,196,255,.3); margin-bottom: 3px; display: block; transition: color .15s; }
.fvv-lg-txt  { font-size: 9px; color: var(--fvv-muted); line-height: 1.4; font-weight: 500; transition: color .15s; }
.fvv-lg-maps { font-size: 8px; color: #35845f; margin-top: 2px; font-weight: 600; letter-spacing: .3px; text-transform: uppercase; transition: color .15s; }

.fvv-col-arrow { display: flex; align-items: center; justify-content: center; padding: 0 9px; border-left: 1px solid var(--fvv-border); background: var(--fvv-deep); }
.fvv-arrow-btn { background: none; border: none; color: #4a5380; cursor: pointer; font-size: 19px; line-height: 1; transition: color .15s, transform .2s; }
.fvv-card:hover .fvv-arrow-btn,
.fvv-card.fvv-active .fvv-arrow-btn           { color: var(--fvv-gold); }
.fvv-card.fvv-active .fvv-arrow-btn           { transform: rotate(90deg); }

/* ── POPOVER ── */
.fvv-popover {
    display: none; position: relative; z-index: 2;
    background: #0e1334; border: 1px solid var(--fvv-gold);
    border-top: none; border-radius: 0 0 var(--fvv-r) var(--fvv-r);
    margin-bottom: 8px; overflow: hidden;
    animation: fvvIn .18s ease;
}
.fvv-popover.fvv-open { display: block; }

@keyframes fvvIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fvv-pop-foto { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background: var(--fvv-deep2); display: flex; align-items: center; justify-content: center; position: relative; border-radius: 10px; border: 1px solid var(--fvv-border); }
.fvv-pop-foto img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.fvv-pop-avt { width: 80px; height: 80px; border-radius: 50%; background: #181d3b; border: 3px solid var(--fvv-gold-dk); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; color: var(--fvv-gold); }


.fvv-pop-body  { display: grid; grid-template-columns: 1fr 172px; gap: 0; }
.fvv-pop-left  { padding: 16px 18px 18px; }
.fvv-pop-right { padding: 16px 14px 18px; border-left: 1px solid var(--fvv-border); background: #0b1030; display: flex; flex-direction: column; gap: 12px; }

/* Día + hora grandes */
.fvv-pop-when  { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.fvv-pop-dia-n { font-size: 52px; font-weight: 800; color: var(--fvv-gold); line-height: 1; letter-spacing: -2px; flex-shrink: 0; } /* TODO pantalla ancha: 64px */
.fvv-pop-dia-s { display: flex; flex-direction: column; justify-content: center; border-left: 2px solid var(--fvv-gold-dk); padding-left: 10px; }
.fvv-pop-dow   { font-size: 14px; font-weight: 700; color: var(--fvv-text); text-transform: uppercase; letter-spacing: .5px; line-height: 1.1; }
.fvv-pop-mes   { font-size: 11px; color: var(--fvv-muted); margin-top: 1px; }

.fvv-pop-hora-row { display: flex; align-items: center; margin-bottom: 12px; background: var(--fvv-deep); border-radius: 7px; padding: 8px 14px; border: 1px solid var(--fvv-border); }
.fvv-pop-hora-ini { font-size: 26px; font-weight: 800; color: var(--fvv-gold); line-height: 1; letter-spacing: -.5px; } /* TODO pantalla ancha: 30–32px */
.fvv-pop-hora-sep { font-size: 16px; color: rgba(181,196,255,.3); margin: 0 8px; }
.fvv-pop-hora-fin { font-size: 20px; font-weight: 700; color: var(--fvv-gold-dk); line-height: 1; letter-spacing: -.3px; }

.fvv-pop-tit  { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 3px; }
.fvv-pop-sp   { font-size: 12px; color: var(--fvv-gold-dk); margin-bottom: 10px; line-height: 1.4; }
.fvv-pop-desc { font-size: 12px; color: #aaa; line-height: 1.6; margin-bottom: 12px; }
.fvv-pop-tags { display: flex; flex-wrap: wrap; gap: 5px; }

.fvv-pop-info    { display: flex; flex-direction: column; gap: 10px; }
.fvv-pop-info-it label { display: block; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--fvv-muted); margin-bottom: 3px; }
.fvv-pop-info-it p { font-size: 12px; color: var(--fvv-text); line-height: 1.4; }

/* Botón Maps en popover */
.fvv-maps-btn { display: flex; align-items: center; gap: 8px; background: rgba(13,42,30,.55); border: 1px solid rgba(52,211,153,.25); border-radius: 8px; padding: 10px 11px; text-decoration: none; cursor: pointer; transition: background .15s, border-color .15s; width: 100%; }
.fvv-maps-btn:hover { background: rgba(18,52,36,.75); border-color: var(--fvv-green); }
.fvv-maps-btn:hover .fvv-maps-name { color: var(--fvv-green); }
.fvv-maps-icon { font-size: 20px; flex-shrink: 0; line-height: 1; }
.fvv-maps-text { display: flex; flex-direction: column; min-width: 0; }
.fvv-maps-name { font-size: 12px; font-weight: 700; color: var(--fvv-text); line-height: 1.3; transition: color .15s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fvv-maps-cta  { font-size: 9px; color: #3fae7c; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-top: 1px; }
.fvv-maps-btn:hover .fvv-maps-cta { color: var(--fvv-green); }

/* Botones de acción */
.fvv-pop-actions { display: flex; flex-direction: column; gap: 7px; margin-top: auto; }
.fvv-btn-action  { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; padding: 8px 10px; border-radius: 7px; font-size: 11px; font-weight: 700; cursor: pointer; text-decoration: none; border: none; font-family: inherit; letter-spacing: .3px; transition: opacity .15s; }
.fvv-btn-action:hover { opacity: .85; }
/* !important: Flatsome pinta los <a> de blanco y dejaba texto blanco sobre dorado */
.fvv-agenda-wrap a.fvv-btn-reg,
.fvv-btn-reg,
.fvv-btn-reg:hover,
.fvv-btn-reg:visited { background: var(--fvv-gold); color: #1c1602 !important; }
.fvv-agenda-wrap a.fvv-btn-cal,
.fvv-btn-cal,
.fvv-btn-cal:visited { background: transparent; border: 1px solid var(--fvv-border); color: var(--fvv-text) !important; }
.fvv-btn-cal:hover { border-color: var(--fvv-gold); color: var(--fvv-gold) !important; }

.fvv-cls { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,.55); border: 1px solid rgba(181,196,255,.3); color: #fff; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; z-index: 5; transition: background .15s; }
.fvv-cls:hover { background: var(--fvv-red); border-color: var(--fvv-red); }

.fvv-empty { text-align: center; color: var(--fvv-muted); padding: 40px; border: 1px dashed var(--fvv-border); border-radius: var(--fvv-r); font-size: 13px; display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 560px) {
    .fvv-col-lugar  { min-width: 70px; max-width: 80px; padding: 6px; }
    .fvv-lg-maps    { display: none; }
    .fvv-card       { grid-template-columns: 62px 54px 1fr auto auto; }
    .fvv-col-foto img { width: 54px; }
    .fvv-hora-ini   { font-size: 15px; }
    .fvv-titulo     { font-size: 13px; white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .fvv-speaker    { white-space: normal; }
    .fvv-pop-body   { grid-template-columns: 1fr; }
    .fvv-pop-right  { border-left: none; border-top: 1px solid var(--fvv-border); padding: 12px 14px 16px; flex-direction: row; flex-wrap: wrap; gap: 10px; align-items: flex-start; }
    .fvv-pop-info   { flex: 1; min-width: 0; }
    .fvv-maps-btn   { width: 100%; }
    .fvv-pop-actions{ flex-direction: row; width: 100%; gap: 6px; margin-top: 0; }
    .fvv-btn-action { flex: 1; }
    .fvv-pop-dia-n  { font-size: 38px; }
    .fvv-pop-hora-ini { font-size: 20px; }
    .fvv-pop-hora-fin { font-size: 16px; }
    .fvv-pop-foto   { width: 96px; aspect-ratio: 1/1; flex-shrink: 0; }
}
@media (max-width: 380px) {
    .fvv-col-lugar  { display: none; }
    .fvv-card       { grid-template-columns: 56px 46px 1fr auto; }
    .fvv-filtros select { min-width: calc(50% - 3px); }
}

/* ── Tipografía display + ajustes desktop ── */
.fvv-dia-num, .fvv-pop-dia-n { font-family: 'Epilogue', sans-serif; }
.fvv-hora-ini, .fvv-hora-fin, .fvv-pop-hora-ini, .fvv-pop-hora-fin { font-family: 'Space Grotesk', sans-serif; }

@media (min-width: 900px) {
    .fvv-hora-ini     { font-size: 22px; }
    .fvv-dia-num      { font-size: 64px; min-width: 84px; }
    .fvv-pop-dia-n    { font-size: 64px; }
    .fvv-pop-hora-ini { font-size: 30px; }
    .fvv-pop-hora-fin { font-size: 22px; }
    .fvv-card         { min-height: 84px; }
    .fvv-titulo       { font-size: 15px; }

    .fvv-sec-tit      { font-size: 42px; }
    .fvv-filtros select { font-size: 13px; }
}

/* ── ESCRITORIO ANCHO: agenda a todo el ancho del navegador ── */
@media (min-width: 1280px) {
    /* Cabeceras de sección y filtros */
    .fvv-sec-kicker   { font-size: 14px; letter-spacing: 4px; margin-bottom: 8px; }
    .fvv-sec-tit      { font-size: 58px; }
    .fvv-sec-tit-sm   { font-size: 30px; }
    .fvv-sec-sub      { font-size: 16px; }
    .fvv-sec-hdr      { margin-bottom: 12px; }
    .fvv-filtros      { gap: 10px; margin-bottom: 16px; }
    .fvv-filtros select { font-size: 15px; padding: 13px 34px 13px 16px; border-radius: 10px; }
    .fvv-btn-reset    { font-size: 13px; padding: 13px 20px; border-radius: 10px; }
    .fvv-contador     { font-size: 13px; margin-bottom: 16px; }

    /* Cabecera de día */
    .fvv-dia-hdr      { margin: 38px 0 16px; }
    .fvv-dia-num      { font-size: 84px; min-width: 112px; }
    .fvv-dia-info     { padding-left: 18px; }
    .fvv-dia-dow      { font-size: 21px; }
    .fvv-dia-mes      { font-size: 13px; }

    /* Card */
    .fvv-wrap:not(.fvv-open-wrap) { margin-bottom: 12px; }
    .fvv-card         { grid-template-columns: 124px 96px minmax(330px, 1fr) 1.35fr auto auto; min-height: 98px; border-radius: 14px; }
    .fvv-col-extract  {
        display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
        overflow: hidden; align-self: center;
        margin: 0 22px 0 6px; padding-left: 22px;
        border-left: 1px solid var(--fvv-border);
        font-size: 13px; line-height: 1.55; color: var(--fvv-muted);
    }
    .fvv-col-extract:empty { border-left: none; }
    .fvv-hora-ini     { font-size: 28px; }
    .fvv-hora-fin     { font-size: 13px; }
    .fvv-hora-sep     { font-size: 10px; }
    .fvv-col-foto img { width: 96px; }
    .fvv-avt          { width: 56px; height: 56px; font-size: 17px; }
    .fvv-col-body     { padding: 15px 20px; }
    .fvv-titulo       { font-size: 17.5px; margin-bottom: 5px; }
    .fvv-speaker      { font-size: 13px; margin-bottom: 7px; }
    .fvv-badges       { gap: 5px; }
    .fvv-b            { font-size: 11.5px; padding: 3px 10px; }
    .fvv-col-lugar    { min-width: 130px; max-width: 160px; padding: 10px 14px; }
    .fvv-lg-pin       { font-size: 17px; }
    .fvv-lg-txt       { font-size: 11px; }
    .fvv-lg-maps      { font-size: 9px; }
    .fvv-col-arrow    { padding: 0 14px; }
    .fvv-arrow-btn    { font-size: 24px; }

    /* Popover */
    .fvv-pop-body     { grid-template-columns: 1fr 230px; }
    .fvv-pop-left     { padding: 24px 30px 28px; }
    .fvv-pop-right    { padding: 22px 18px 26px; }
    .fvv-pop-dia-n    { font-size: 78px; }
    .fvv-pop-dow      { font-size: 17px; }
    .fvv-pop-mes      { font-size: 13px; }
    .fvv-pop-hora-row { padding: 10px 18px; border-radius: 10px; }
    .fvv-pop-hora-ini { font-size: 36px; }
    .fvv-pop-hora-fin { font-size: 27px; }
    .fvv-pop-tit      { font-size: 23px; margin-bottom: 5px; }
    .fvv-pop-sp       { font-size: 14.5px; }
    /* La descripción llena el ancho en columnas legibles (2–3 según pantalla) */
    .fvv-pop-desc     {
        font-size: 14.5px; line-height: 1.7;
        column-width: 44ch; column-gap: 56px;
        column-rule: 1px solid var(--fvv-border);
    }
    .fvv-pop-tit      { max-width: none; }
    .fvv-pop-info-it label { font-size: 10px; }
    .fvv-pop-info-it p { font-size: 13.5px; }
    .fvv-maps-name    { font-size: 13.5px; }
    .fvv-btn-action   { font-size: 12.5px; padding: 11px 12px; }

    /* Panel Semana Viva Voz más ancho */
    .fvv-previa-panel { width: min(640px, 100vw); padding: 30px 28px 56px; }
    .fvv-fab-previa   { padding: 12px 24px 12px 16px; }
    .fvv-fab-txt b    { font-size: 13px; }
    .fvv-fab-txt small { font-size: 11px; }
}

/* ── SALTO RÁPIDO POR DÍA (sticky) + rendimiento de scroll ── */
.fvv-dianav {
    position: sticky; top: 60px; z-index: 500;
    display: flex; align-items: center; gap: 8px;
    width: 100%;
    overflow-x: visible;
    padding: 16px 0 10px; margin: 0 0 16px;
    /* banda del MISMO color de la página: invisible en reposo,
       pero opaca al quedar fija (el contenido no se transparenta) */
    background: #060b29; border: none; box-shadow: none;
}
.fvv-dianav::after {
    content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 16px;
    background: linear-gradient(#060b29, transparent); pointer-events: none;
}
.fvv-dianav-lbl {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--fvv-muted); white-space: nowrap;
}
.fvv-dianav-chip {
    display: inline-flex; align-items: baseline; gap: 5px;
    flex-shrink: 0; /* no aplastar el chip: la barra scrollea horizontal */
    background: transparent; border: 1px solid var(--fvv-border);
    color: var(--fvv-text); border-radius: var(--fvv-r); /* mismo radio que cards/filtros */
    padding: 6px 14px; cursor: pointer; white-space: nowrap;
    font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600;
    transition: border-color .15s, background .15s;
}
.fvv-dianav-lbl { flex-shrink: 0; }
.fvv-dianav-chip b { color: var(--fvv-gold); font-size: 16px; font-weight: 700; line-height: 1; }
.fvv-dianav-chip:hover,
.fvv-dianav-chip.fvv-on { border-color: var(--fvv-gold); background: rgba(252, 207, 0, 0.1); }
.fvv-dianav-previa { color: var(--fvv-muted); }
/* Contador oculto (queda en el DOM para el JS de filtros, pero no ocupa espacio) */
.fvv-dianav-cnt { display: none; }
.fvv-dianav-cnt b { color: var(--fvv-gold); font-size: 15px; }

/* Los saltos aterrizan debajo del nav fijo + barra sticky */
.fvv-dia-hdr { scroll-margin-top: 150px; }

/* Rendimiento: no pintar cards fuera de pantalla (51 cards a todo lo ancho) */
#fvv-lista .fvv-wrap:not(.fvv-open-wrap) {
    content-visibility: auto;
    contain-intrinsic-size: auto 100px;
}

@media (min-width: 1280px) {
    .fvv-dianav { top: 60px; padding: 18px 0 12px; gap: 10px; }
    .fvv-dianav-lbl { font-size: 11px; }
    /* Los chips crecen y reparten toda la longitud de la barra */
    .fvv-dianav-chip { font-size: 15px; padding: 9px 18px; flex: 1 1 auto; justify-content: center; }
    .fvv-dianav-chip b { font-size: 20px; }
    .fvv-dianav-cnt { font-size: 13px; }
    .fvv-dianav-cnt b { font-size: 17px; }
    #fvv-lista .fvv-wrap:not(.fvv-open-wrap) { contain-intrinsic-size: auto 110px; }
}
@media (max-width: 560px) {
    /* Sin scroll horizontal: los chips envuelven en dos filas */
    .fvv-dianav { top: 56px; padding: 12px 0 8px; flex-wrap: wrap; overflow-x: visible; width: 100%; gap: 6px; }
    .fvv-dia-hdr { scroll-margin-top: 170px; }
}
/* Nunca mostrar scrollbar en la barra de días */
.fvv-dianav { scrollbar-width: none; }
.fvv-dianav::-webkit-scrollbar { display: none; }

/* ── PANTALLA SÚPER ANCHA: aprovechar aún más el espacio ── */
@media (min-width: 1700px) {
    .fvv-pop-body     { grid-template-columns: 1fr 280px; }
    .fvv-pop-left     { padding: 28px 38px 32px; }
    .fvv-pop-desc     { font-size: 15px; column-gap: 64px; }
    .fvv-pop-tit      { font-size: 25px; }
    .fvv-pop-hora-ini { font-size: 40px; }
    .fvv-pop-hora-fin { font-size: 30px; }
    .fvv-titulo       { font-size: 19px; }
    .fvv-speaker      { font-size: 14px; }
    .fvv-card         { grid-template-columns: 136px 104px minmax(360px, 1fr) 1.5fr auto auto; min-height: 106px; }
    .fvv-col-extract  { font-size: 13.5px; -webkit-line-clamp: 3; margin-right: 30px; }
    .fvv-col-foto img { width: 104px; }
    .fvv-hora-ini     { font-size: 31px; }
    .fvv-col-lugar    { min-width: 150px; max-width: 180px; }
    .fvv-lg-txt       { font-size: 12px; }
    .fvv-b            { font-size: 12px; }
    .fvv-dia-num      { font-size: 92px; min-width: 122px; }
}


/* ══ SEMANA VIVA VOZ: trueque de estilo — fondo amarillo, textos oscuros ══ */
.fvv-fab-previa {
    background: linear-gradient(90deg, #fccf00 0%, #edc200 100%);
    border: 1px solid rgba(26, 20, 0, 0.4);
    box-shadow: 0 10px 34px rgba(252, 207, 0, 0.35);
}
.fvv-fab-previa:hover { border-color: #1a1400; box-shadow: 0 14px 40px rgba(252, 207, 0, 0.5); }
.fvv-fab-txt b { color: #1a1400; }
.fvv-fab-txt small { color: #5c4700; }

.fvv-previa-panel {
    background: linear-gradient(180deg, #fccf00 0%, #f3c500 60%, #e8bc00 100%);
    border-right: 1px solid rgba(26, 20, 0, 0.35);
}
.fvv-previa-panel .fvv-sec-kicker { color: #7a5c00; }
.fvv-previa-panel .fvv-sec-tit-sm { color: #1a1400; }
.fvv-previa-panel .fvv-sec-sub    { color: #3b2f00; }
.fvv-previa-cls { background: rgba(26, 20, 0, 0.75); border-color: rgba(26, 20, 0, 0.4); }

/* Cabeceras de día dentro del panel */
.fvv-previa-panel .fvv-dia-num  { color: #1a1400; }
.fvv-previa-panel .fvv-dia-dow  { color: #1a1400; }
.fvv-previa-panel .fvv-dia-mes  { color: #6b5200; }
.fvv-previa-panel .fvv-dia-info { border-left-color: #1a1400; }

/* Cards dentro del panel: claras sobre amarillo */
.fvv-previa-panel .fvv-card { background: rgba(255, 255, 255, 0.6); border-color: rgba(26, 20, 0, 0.22); }
.fvv-previa-panel .fvv-card:hover,
.fvv-previa-panel .fvv-card.fvv-active { background: rgba(255, 255, 255, 0.85); border-color: #1a1400; }
.fvv-previa-panel .fvv-col-hora,
.fvv-previa-panel .fvv-col-foto,
.fvv-previa-panel .fvv-col-lugar,
.fvv-previa-panel .fvv-col-arrow { background: rgba(26, 20, 0, 0.07); border-color: rgba(26, 20, 0, 0.15); }
.fvv-previa-panel .fvv-hora-ini { color: #1a1400; }
.fvv-previa-panel .fvv-hora-fin { color: #6b5200; }
.fvv-previa-panel .fvv-hora-sep { color: rgba(26, 20, 0, 0.35); }
.fvv-previa-panel .fvv-avt { background: #1a1400; border-color: rgba(26, 20, 0, 0.5); color: #fccf00; }
.fvv-previa-panel .fvv-titulo  { color: #1a1400; }
.fvv-previa-panel .fvv-speaker { color: #7a5c00; }
.fvv-previa-panel .fvv-tag-acc { border-color: rgba(26, 20, 0, 0.4); color: #3b2f00; }
.fvv-previa-panel .fvv-lg-pin  { color: rgba(26, 20, 0, 0.5); }
.fvv-previa-panel .fvv-lg-txt  { color: #3b2f00; }
.fvv-previa-panel .fvv-lg-maps { color: #1f5c3d; }
.fvv-previa-panel .fvv-col-lugar:hover { background: rgba(26, 60, 30, 0.15); }
.fvv-previa-panel .fvv-arrow-btn { color: #3b2f00; }
.fvv-previa-panel .fvv-card:hover .fvv-arrow-btn,
.fvv-previa-panel .fvv-card.fvv-active .fvv-arrow-btn { color: #1a1400; }

/* Popover dentro del panel: claro, textos oscuros */
.fvv-previa-panel .fvv-popover { background: #fffbe8; border-color: #1a1400; }
.fvv-previa-panel .fvv-pop-dia-n { color: #1a1400; }
.fvv-previa-panel .fvv-pop-dia-s { border-left-color: #1a1400; }
.fvv-previa-panel .fvv-pop-dow { color: #1a1400; }
.fvv-previa-panel .fvv-pop-mes { color: #6b5200; }
.fvv-previa-panel .fvv-pop-hora-row { background: rgba(26, 20, 0, 0.06); border-color: rgba(26, 20, 0, 0.15); }
.fvv-previa-panel .fvv-pop-hora-ini { color: #1a1400; }
.fvv-previa-panel .fvv-pop-hora-sep { color: rgba(26, 20, 0, 0.4); }
.fvv-previa-panel .fvv-pop-hora-fin { color: #7a5c00; }
.fvv-previa-panel .fvv-pop-tit  { color: #1a1400; }
.fvv-previa-panel .fvv-pop-sp   { color: #7a5c00; }
.fvv-previa-panel .fvv-pop-desc { color: #3b2f00; }
.fvv-previa-panel .fvv-pop-right { background: rgba(26, 20, 0, 0.05); border-left-color: rgba(26, 20, 0, 0.15); }
.fvv-previa-panel .fvv-pop-info-it label { color: #6b5200; }
.fvv-previa-panel .fvv-pop-info-it p { color: #1a1400; }
.fvv-previa-panel .fvv-pop-foto { background: rgba(26, 20, 0, 0.08); border-color: rgba(26, 20, 0, 0.2); }
.fvv-agenda-wrap .fvv-previa-panel a.fvv-btn-reg,
.fvv-agenda-wrap .fvv-previa-panel a.fvv-btn-reg:hover { background: #1a1400 !important; color: #fccf00 !important; }
.fvv-agenda-wrap .fvv-previa-panel a.fvv-btn-cal { border-color: rgba(26, 20, 0, 0.4) !important; color: #1a1400 !important; }
.fvv-agenda-wrap .fvv-previa-panel a.fvv-btn-cal:hover { border-color: #1a1400 !important; color: #1a1400 !important; }



/* ══ Panel Semana Viva Voz: layout compacto (el panel es angosto aunque el viewport sea ancho) ══ */
/* Cards: grid compacto, sin extracto, títulos en dos líneas */
.fvv-previa-panel .fvv-card { grid-template-columns: 70px 62px 1fr auto auto !important; min-height: 74px !important; }
.fvv-previa-panel .fvv-col-extract { display: none !important; }
.fvv-previa-panel .fvv-col-foto img { width: 62px !important; }
.fvv-previa-panel .fvv-hora-ini { font-size: 18px !important; }
.fvv-previa-panel .fvv-titulo {
    font-size: 14px !important; white-space: normal !important;
    display: -webkit-box !important; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden !important;
}
.fvv-previa-panel .fvv-speaker { white-space: normal !important; font-size: 12px !important; }
.fvv-previa-panel .fvv-col-lugar { min-width: 84px !important; max-width: 100px !important; }

/* Popover: una sola columna, foto pequeña, botones a lo ancho */
.fvv-previa-panel .fvv-pop-body { grid-template-columns: 1fr !important; }
.fvv-previa-panel .fvv-pop-left { padding: 16px 18px !important; }
.fvv-previa-panel .fvv-pop-right {
    border-left: none !important; border-top: 1px solid rgba(26, 20, 0, 0.15) !important;
    display: flex !important; flex-direction: row !important; flex-wrap: wrap !important;
    gap: 12px !important; align-items: flex-start !important; padding: 14px 16px 18px !important;
}
.fvv-previa-panel .fvv-pop-foto {
    width: 96px !important; flex-shrink: 0 !important; aspect-ratio: 1 / 1 !important;
}
.fvv-previa-panel .fvv-pop-info { flex: 1 !important; min-width: 200px !important; }
.fvv-previa-panel .fvv-pop-actions { flex-direction: row !important; width: 100% !important; gap: 8px !important; margin-top: 0 !important; }
.fvv-previa-panel .fvv-btn-action { flex: 1 !important; }
.fvv-previa-panel .fvv-pop-dia-n { font-size: 44px !important; }
.fvv-previa-panel .fvv-pop-hora-ini { font-size: 24px !important; }
.fvv-previa-panel .fvv-pop-hora-fin { font-size: 18px !important; }
.fvv-previa-panel .fvv-pop-tit { font-size: 18px !important; }
.fvv-previa-panel .fvv-pop-desc { column-width: auto !important; column-count: 1 !important; font-size: 13.5px !important; }
.fvv-previa-panel .fvv-maps-name { white-space: normal !important; }
.fvv-previa-panel .fvv-maps-cta { color: #d8ffe9 !important; }
.fvv-previa-panel .fvv-maps-btn:hover .fvv-maps-cta { color: #ffffff !important; }

