/* EnfoqueDirecto - Original Theme CSS */
:root {
            --bg-dark: #0a0a0a;
            --text-light: #e0e0e0;
            --accent-gold: #c5a059; /* Tono dorado/cobrizo apagado */
            --overlay-dark: rgba(10, 10, 10, 0.7);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, .serif-font {
            font-family: 'Georgia', 'Times New Roman', serif;
            font-weight: normal;
        }

        /* HEADER INYECTADO POR COMPONENTS.JS */
        /* Eliminamos el estilo anterior para evitar conflictos */

        /* TOP SECTION: 100VH INMERSIVO */
        .hero-cinematic {
            height: 100vh;
            width: 100%;
            background-color: #1a1a1a;
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: 80px 50px;
            overflow: hidden;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-color: #1a1a1a;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0) 60%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            width: 100%;
        }

        .category-tag {
            color: var(--accent-gold);
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }

        .hero-content h1 {
            font-size: clamp(3rem, 5vw, 5.5rem);
            color: #ffffff;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .author-meta {
            font-size: 0.9rem;
            color: #aaaaaa;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-meta span {
            color: var(--accent-gold);
        }

        /* MID SECTION: REPORTAJES EN VIDEO */
        .video-section {
            padding: 100px 50px;
            border-bottom: 1px solid #222;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 60px;
            color: #ffffff;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .video-card {
            cursor: pointer;
            group: hover;
        }

        .video-thumb {
            width: 100%;
            aspect-ratio: 16/9;
            background-color: #1a1a1a;
            position: relative;
            margin-bottom: 20px;
            transition: filter 0.4s ease;
            filter: brightness(0.7);
        }

        .video-card:hover .video-thumb {
            filter: brightness(1);
        }

        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            border: 1px solid var(--accent-gold);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--accent-gold);
        }

        .video-card h3 {
            font-size: 1.4rem;
            line-height: 1.3;
            color: #dddddd;
            transition: color 0.3s ease;
        }

        .video-card:hover h3 {
            color: var(--accent-gold);
        }

        /* GRID SECTION: SIN BORDES */
        .editorial-grid {
            padding: 100px 50px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 80px;
        }

        .article-card {
            display: flex;
            flex-direction: column;
        }

        .article-img {
            width: 100%;
            height: 400px;
            margin-bottom: 30px;
            transition: transform 0.6s ease;
        }

        .img-wrapper {
            overflow: hidden;
            margin-bottom: 30px;
        }

        .article-card:hover .article-img {
            transform: scale(1.05);
        }

        .article-card h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .article-card p {
            color: #888888;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .read-more {
            color: var(--accent-gold);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            align-self: flex-start;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s ease;
        }

        .read-more:hover {
            border-color: var(--accent-gold);
        }

        /* FOOTER */
        footer {
            padding: 80px 50px;
            text-align: center;
            border-top: 1px solid #222;
        }

        .footer-brand {
            font-family: 'Georgia', serif;
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 30px;
            letter-spacing: 5px;
        }

        .footer-links a {
            color: #888888;
            text-decoration: none;
            margin: 0 15px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .video-grid { grid-template-columns: repeat(2, 1fr); }
            .editorial-grid { gap: 50px; }
        }

        @media (max-width: 768px) {
            header { padding: 20px; }
            nav ul { gap: 20px; flex-wrap: wrap; justify-content: center; }
            .hero-cinematic { padding: 40px 20px; }
            .hero-content h1 { font-size: 2.5rem; }
            .video-grid, .editorial-grid { grid-template-columns: 1fr; }
            .video-section, .editorial-grid { padding: 60px 20px; }
        }


/* ===== UNIQUE LOADER (text/text-ball-spn-ar) ===== */
.loader{
    position: relative;
    font-size: 48px;
    letter-spacing: 2px;
  }
  .loader:before {
    content: "Loading";
    color: #fff;
  }
  .loader:after {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #0e7490;
    border-radius: 50%;
    position: absolute;
    inset: 0;
    margin: auto;
    top: -70px;
    animation: motion 3s ease-in-out infinite;
  }

  @keyframes motion {
    0%, 50%, 100% {
      transform: translateX(0) scale(1);
    }
    25% {
      transform: translateX(-100px) scale(0.3);
    }
    75% {
      transform: translateX(100px) scale(0.3);
    }
  }
