/* ============================
   ESTILOS GENERALES
============================ */

body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

.jf-main {
    padding: 20px;
}

/* ============================
   HEADER STICKY + FADE
============================ */

.jf-header-sticky {
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: background 0.3s ease, padding 0.3s ease;
}

.jf-header-scrolled {
    background: rgba(0,0,0,0.85) !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

/* ============================
   FOOTER
============================ */

.jf-footer {
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

/* ============================
   TITULOS DE FILAS
============================ */

.jf-row-title {
    font-size: 24px;
    margin: 20px 0 10px 10px;
}

/* ============================
   CONTENEDOR DE FILAS
============================ */

.jf-row {
    position: relative;
    margin-bottom: 40px;
}

.jf-row-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
}

.jf-row-slider::-webkit-scrollbar {
    height: 8px;
}

.jf-row-slider::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}
