:root {
    --bg-color: #0a0a0a;
    --text-color: #f5f5f5;
    --accent-color: #d4af37; /* Dorado/Champagne elegante */
    --card-bg: #141414;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: clip; /* clip instead of hidden allows position: sticky to work in tables */
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ========================================================
   METAMORFOSIS DE NAVEGACIÓN (HUB vs STUDIO)
   ======================================================== */
.navbar-hub {
    background-color: rgba(0, 0, 0, 0.5); /* Más transparente en el Hub */
    border-bottom: none;
}

.navbar-hub .nav-links {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.navbar-hub .menu-toggle {
    display: none !important;
}

.navbar-hub .vjf-logo {
    display: none !important;
}

.navbar:not(.navbar-hub) .hub-logo {
    display: none !important;
}

.navbar:not(.navbar-hub) .vjf-logo {
    display: block !important;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-color);
}

.logo::after {
    content: ''; /* Quitamos el punto que molestaba */
}

/* Contenedor de botones de acción (derecha - VERTICAL) */
.nav-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 10px; /* Reducido de 20px */
    align-items: flex-end;
}

.nav-actions .btn-nav {
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 0.7rem;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    white-space: nowrap;
    text-align: right;
    width: fit-content;
}

.btn-cliente { border: 1px solid rgba(255,255,255,0.2); color: #ccc; }
.btn-inversor { border: 1px solid var(--accent-color); color: var(--accent-color); }
.btn-usuario  { background: var(--accent-color); color: #000; border: none; font-weight: 600; }

.btn-nav:hover { transform: translateX(-5px); box-shadow: -5px 0 10px rgba(212,175,55,0.2); background: rgba(255,255,255,0.05); color: #fff; }
.btn-usuario:hover { background: #fff; color: #000; }

/* Utilidades Adicionales */
.text-gold {
    color: var(--accent-color);
}

/* ========================================================
   HUB: SPLIT SCREEN (Pantalla Repartidora)
   ======================================================== */
.split-hero-container {
    display: flex;
    width: 100%;
    height: 100dvh; /* Better handling of mobile address bar */
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.split-half {
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: flex 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    padding-top: 80px; /* Space for navbar to prevent clipping */
}

/* Superposición oscura para que se lea el texto */
.split-half::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.5);
    transition: background 0.5s ease;
    z-index: 1;
}

.split-half:hover::before {
    background: rgba(10, 10, 10, 0.3);
}

.split-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    transition: transform 0.5s ease;
}

.split-half:hover {
    flex: 1.3;
}

.split-half:hover .split-content {
    transform: scale(1.05);
}

/* Clases de animación ("Comerse la pantalla") */
.split-half.expanded {
    flex: 100;
    cursor: default;
}
.split-half.expanded::before {
    background: rgba(10, 10, 10, 0.2);
}

.split-half.collapsed {
    flex: 0;
}
.split-half.collapsed .split-content {
    opacity: 0;
}

/* Fondos */
.split-studio {
    background: url('images/hero-bg.jpg') center/cover no-repeat;
}

.split-portal {
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

/* Mobile: Apilado Vertical */
@media (max-width: 768px) {
    .split-hero-container {
        flex-direction: column;
        min-height: 100dvh;
        height: auto;
    }
    .split-studio {
        flex: 1.25 !important;
        padding-top: 80px;
    }
    .split-portal {
        flex: 1 !important;
        padding-top: 10px !important;
    }
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem; /* Reducido de 2.5rem para evitar cortes en notebooks */
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-btn-cliente {
    color: var(--text-color) !important;
    border: 1px solid #444;
    padding: 0.5rem 1.2rem !important;
    border-radius: 2px;
    font-size: 0.8rem !important;
    margin-left: 0.5rem;
    display: inline-block;
    white-space: nowrap;
}
.nav-btn-cliente:hover {
    background: rgba(255,255,255,0.05);
}

.nav-btn-inversor {
    color: var(--accent-color) !important;
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1.2rem !important;
    border-radius: 2px;
    font-size: 0.8rem !important;
    margin-left: 0.5rem;
    display: inline-block;
    white-space: nowrap;
}
.nav-btn-inversor:hover {
    background: rgba(212, 175, 55, 0.1);
}

.nav-btn-usuario {
    color: #000 !important;
    background: var(--accent-color);
    padding: 0.5rem 1.2rem !important;
    border-radius: 2px;
    font-size: 0.8rem !important;
    margin-left: 0.5rem;
    display: inline-block;
    white-space: nowrap;
    border: none;
    font-weight: 600;
}
.nav-btn-usuario:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent; /* Ahora el fondo es dinámico */
}

/* Dynamic Background Container */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: background-image 1.2s ease-in-out;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.95));
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-transform: uppercase;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* Sections */
.section {
    padding: 8rem 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 1.5rem auto 0;
}

.section-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #aaa;
    font-weight: 300;
}

/* Vida y Obras */
.dual-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.card {
    background: var(--card-bg);
    padding: 4rem 3rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.card p {
    color: #aaa;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Portfolio & Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    overflow: hidden;
    position: relative;
}

.portfolio-img {
    height: 350px;
    background-size: cover;
    background-position: center;
    background-color: #111;
    display: flex;
    align-items: flex-end;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Specific size for experiences (Vida en Movimiento) */
#experiencias .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

#experiencias .portfolio-img {
    height: 220px;
}

.overlay {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    opacity: 1; /* SIEMPRE VISIBLE */
    transform: translateY(0); /* SIEMPRE VISIBLE */
    transition: none; /* Sin animaciones que lo oculten */
}

.proj-title {
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important; /* Tamaño equilibrado */
    font-weight: 500 !important; /* Un poco más gruesa, como pediste */
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-color);
    margin-bottom: 4px;
    display: block;
}

.proj-details {
    font-family: var(--font-body) !important;
    font-size: 0.65rem !important;
    font-weight: 300 !important; /* Más fina */
    color: rgba(255,255,255,0.8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
}

/* Indicador de Video */
.video-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-indicator svg {
    width: 15px;
    height: 15px;
    fill: var(--accent-color);
    margin-left: 2px;
}

.portfolio-item:hover .video-indicator {
    opacity: 1;
    transform: scale(1.1);
    background: var(--accent-color);
}

.portfolio-item:hover .video-indicator svg {
    fill: black;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-item:hover .overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Contact */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Login Container */
.login-container {
    background: var(--card-bg);
    padding: 4rem;
    border-radius: 4px;
    border-top: 3px solid var(--accent-color);
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Modal Gallery */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 100%;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
}

.modal-nav {
    margin-top: 2rem;
    display: flex;
    gap: 3rem;
}

.nav-btn {
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.nav-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 900px) {
    .navbar {
        padding: 1rem 5%;
    }
    .navbar .logo img {
        height: 60px !important;
    }
    .menu-toggle {
        display: flex;
    }
    .dual-container {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 2rem 5%;
        gap: 1.5rem;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
        z-index: -1;
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        z-index: 999;
        overflow-y: auto;
        max-height: 85vh;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 0;
    }
    .nav-actions {
        display: none; /* Ocultar en móvil para no saturar, se verán dentro del menú */
    }
    .nav-links .btn-nav-mobile {
        margin-top: 10px;
        display: block !important;
        width: 100%;
        border-radius: 4px;
        padding: 12px !important;
    }
}

/* TOUR TOOLTIPS */
.tour-tooltip {
    position: absolute;
    background: white;
    color: #000;
    padding: 15px;
    border-radius: 10px;
    z-index: 3000;
    max-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    font-size: 0.9rem;
    line-height: 1.4;
    border-left: 4px solid var(--accent-color);
}

.tour-tooltip::after {
    content: '';
    position: absolute;
    border: 10px solid transparent;
}

.tt-bottom::after { border-bottom-color: white; top: -20px; left: 20px; }
.tt-top::after { border-top-color: white; bottom: -20px; left: 20px; }
.tt-left::after { border-left-color: white; right: -20px; top: 20px; }
.tt-right::after { border-right-color: white; left: -20px; top: 20px; }

/* Custom styles for Sumate form */
/* Modal Form (Proveedores) */
.modal-form {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a; /* Totalmente opaco */
    overflow-y: auto;
    padding: 2rem 5%;
}

.modal-form-content {
    max-width: 800px;
    margin: 4rem auto;
    background: #0a0a0a;
}

.close-modal-form {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.service-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.service-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.service-card .material-icons {
    transition: transform 0.4s ease;
}

.service-card:hover .material-icons {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .modal-form {
        padding: 1rem;
    }
    .modal-form-content {
        margin: 2rem auto;
    }
    .close-modal-form {
        right: 20px;
        top: 20px;
    }
}


/* ============================================== */
/* NATIVE MOBILE FEED (MI PORTAL) */
/* ============================================== */
.hide-on-mobile {
    display: inline-flex; /* Default para PC */
}
.mobile-feed-only {
    display: none; /* Oculto en PC */
}

/* Tarjetas Inmersivas (Mobile) */
.vjf-mobile-card {
    position: relative;
    width: 100%;
    height: 60vh;
    border-radius: 12px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #333;
}
.vjf-mobile-card-pdf {
    background-color: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
}
.vjf-mobile-card-pdf .material-icons {
    font-size: 64px;
    color: #e74c3c;
    margin-bottom: 10px;
}

.vjf-mobile-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.vjf-mobile-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    z-index: 10;
}

.vjf-mobile-folder-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.vjf-mobile-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    color: #fff;
}

/* Media Queries para Celulares */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none; } /* !important removed for toggle */
    .desktop-table-only {
        display: none !important;
    }
    .mobile-feed-only {
        display: block !important;
    }
}

/* --- ESTILOS INMERSIVOS VJF FEED --- */
.vjf-feed-post {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0a;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.vjf-feed-image {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    background: #000;
}

.vjf-feed-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    padding: 40px 20px 20px 20px;
    color: white;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vjf-feed-folder-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: var(--accent-color);
    padding: 5px 10px;
    border-radius: 20px;
    align-self: flex-start;
    box-shadow: 0 2px 10px rgba(212,175,55,0.3);
}

.vjf-feed-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9);
    font-family: 'Outfit', sans-serif;
}

.vjf-feed-pdf-post {
    background: #151515;
    border: 1px solid #333;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vjf-feed-pdf-icon {
    font-size: 45px;
    color: #ff4444;
    filter: drop-shadow(0 2px 4px rgba(255,68,68,0.3));
}

.vjf-feed-pdf-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* --- PDF y VIDEO EN FEED --- */
.vjf-feed-pdf-post-visual {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    background: #050505;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
}
.pdf-preview-canvas {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: contain;
    background: #000;
}
.vjf-feed-video {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    background: #000;
}

/* --- SECCIONES DEL FEED --- */
.vjf-feed-section-header {
    width: 100%;
    margin: 30px 0 20px 0;
    padding: 10px 15px;
    background: linear-gradient(90deg, rgba(212,175,55,0.15) 0%, transparent 100%);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}
.vjf-feed-section-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}


@media (min-width: 769px) { .mobile-feed-only { display: none !important; } }