/* ============================================================
   VACACERDO — Estilos exclusivos del Home (index.php)
   Extraído del <style> inline que vivía en el <head> del index.
   style.css sigue teniendo lo compartido por todo el sitio;
   este archivo es SOLO lo que usan las secciones del home.
============================================================ */

        /* ─────────────────────────────────────────────
           SLIDE PARRILLERO PARTICULAR
        ───────────────────────────────────────────── */
        .slide-parrillero {
            background-image: url('https://vacacerdo.cl/assets/img/parrillero-vacacerdo.webp');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center center;
            background-color: #000000;
        }

        /* ─────────────────────────────────────────────
           SECCIÓN MANIFIESTO EN VIVO
           Layout: video 60% | copy 40% con barra roja
        ───────────────────────────────────────────── */
        .manifiesto-section {
            position: relative;
            background: #000000;
            border-top: 1px solid #0f0f0f;
            overflow: hidden;
        }

        .manifiesto-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            min-height: 90vh;
        }

        /* ── COLUMNA IZQUIERDA: VIDEO ── */
        .manifiesto-video-col {
            position: relative;
            overflow: hidden;
        }
        .manifiesto-video-col video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .manifiesto-video-col::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to right,
                rgba(0,0,0,0.1) 0%,
                rgba(0,0,0,0.15) 70%,
                rgba(0,0,0,0.92) 100%
            );
            pointer-events: none;
        }

        /* Chip flotante sobre el video */
        .manifiesto-chip {
            position: absolute;
            top: 36px;
            left: 36px;
            z-index: 4;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(5,5,5,0.75);
            border: 1px solid rgba(196,56,34,0.4);
            backdrop-filter: blur(8px);
            padding: 8px 16px;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #c43822;
        }
        .manifiesto-chip::before {
            content: '';
            width: 6px; height: 6px;
            border-radius: 50%;
            background: #c43822;
            animation: pulso-rojo 1.8s infinite;
            flex-shrink: 0;
        }
        @keyframes pulso-rojo {
            0%, 100% { opacity: 1; transform: scale(1); }
            50%       { opacity: 0.3; transform: scale(0.8); }
        }

        /* ── BARRA VERTICAL SEPARADORA ── */
        .manifiesto-separador {
            position: absolute;
            top: 0; bottom: 0;
            right: 0;
            width: 3px;
            background: linear-gradient(
                to bottom,
                transparent 0%,
                #c43822 25%,
                #c43822 75%,
                transparent 100%
            );
            z-index: 5;
        }

        /* ── COLUMNA DERECHA: COPY ── */
        .manifiesto-copy-col {
            position: relative;
            background: #000000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 56px;
            z-index: 3;
        }

        .manifiesto-eyebrow {
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #c43822;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .manifiesto-eyebrow::before {
            content: '';
            display: block;
            width: 20px; height: 1px;
            background: #c43822;
        }

        .manifiesto-titulo {
            font-size: clamp(2rem, 3.2vw, 3.4rem);
            font-weight: 900;
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            color: #ffffff;
            margin-bottom: 28px;
        }
        .manifiesto-titulo em {
            font-style: normal;
            display: block;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255,255,255,0.25);
            font-size: 0.85em;
        }

        .manifiesto-desc {
            font-size: 0.95rem;
            font-weight: 300;
            color: #777777;
            line-height: 1.8;
            margin-bottom: 48px;
            max-width: 340px;
        }
        .manifiesto-desc strong { color: #ffffff; font-weight: 600; }

        /* ── STATS ANIMADOS ── */
        .manifiesto-stats {
            display: flex;
            flex-direction: column;
            gap: 0;
            border-top: 1px solid #141414;
            margin-bottom: 48px;
        }
        .mstat {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid #141414;
            position: relative;
            overflow: hidden;
        }
        .mstat::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0; height: 1px;
            background: #c43822;
            transition: width 0.6s ease;
        }
        .mstat:hover::after { width: 100%; }
        .mstat__num {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -0.04em;
            color: #ffffff;
            min-width: 100px;
            transition: color 0.3s;
        }
        .mstat:hover .mstat__num { color: #c43822; }
        .mstat__label {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #555555;
            line-height: 1.4;
        }
        .mstat__label strong {
            display: block;
            font-size: 0.8rem;
            color: #888888;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-transform: none;
            margin-top: 3px;
        }

        .manifiesto-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #c43822;
            color: #ffffff;
            text-decoration: none;
            font-weight: 800;
            font-size: 0.78rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 16px 30px;
            transition: background 0.2s, transform 0.2s;
            align-self: flex-start;
        }
        .manifiesto-cta:hover { background: #a62e1c; transform: translateX(4px); }
        .manifiesto-cta svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .manifiesto-grid { grid-template-columns: 1fr 1fr; min-height: 80vh; }
            .manifiesto-copy-col { padding: 60px 36px; }
        }
        @media (max-width: 768px) {
            .manifiesto-grid { grid-template-columns: 1fr; min-height: auto; }
            .manifiesto-video-col { height: 56vw; min-height: 240px; }
            .manifiesto-video-col::after { background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7)); }
            .manifiesto-separador { display: none; }
            .manifiesto-copy-col { padding: 48px 20px; }
            .manifiesto-titulo { font-size: 2rem; }
            .manifiesto-stats { margin-bottom: 36px; }
            .mstat__num { font-size: 2.2rem; min-width: 80px; }
        }

        /* ─────────────────────────────────────────────
           TIMELINE PROCESO
        ───────────────────────────────────────────── */
        .timeline-section {
            background-color: #121212;
            padding: 120px 20px;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            overflow: hidden;
            position: relative;
            border-top: 1px solid rgba(196, 56, 34, 0.25);
        }
        .timeline-container { max-width: 1200px; margin: 0 auto; }
        .timeline-header { text-align: center; margin-bottom: 80px; }
        .timeline-header .tag-process {
            color: #c43822; font-size: 0.8rem; font-weight: 700;
            letter-spacing: 3px; text-transform: uppercase;
            margin-bottom: 15px; display: block;
        }
        .timeline-header h2 {
            font-size: 2.5rem; font-weight: 900; text-transform: uppercase;
            letter-spacing: -1px; margin: 0; line-height: 1.2;
        }
        .timeline-header h2 span {
            font-family: serif; font-style: italic;
            text-transform: lowercase; font-weight: 400; color: #aaaaaa;
        }
        .timeline-wrapper {
            position: relative; display: flex;
            justify-content: space-between;
            align-items: flex-start; gap: 20px; padding: 40px 0;
        }
        .timeline-wrapper::before {
            content: ''; position: absolute; top: 75px; left: 5%;
            width: 90%; height: 1px;
            background: linear-gradient(90deg,
                rgba(196,56,34,0.1) 0%, rgba(196,56,34,0.8) 50%, rgba(196,56,34,0.1) 100%
            );
            z-index: 1;
        }
        .timeline-step { position: relative; flex: 1; text-align: center; z-index: 2; }
        .icon-sphere {
            width: 70px; height: 70px; background: #050505;
            border: 1px solid #262626; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 25px; position: relative; overflow: hidden;
            z-index: 2; box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1);
        }
        .icon-sphere svg {
            width: 26px; height: 26px; fill: none; stroke: #a3a3a3;
            stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
            position: relative; z-index: 3; transition: all 0.4s ease;
        }
        .step-number {
            font-size: 0.75rem; font-weight: 800; color: #c43822;
            background: #1a1a1a; padding: 3px 10px;
            border: 1px solid rgba(196,56,34,0.4); border-radius: 20px;
            display: inline-block; margin-bottom: 14px; letter-spacing: 0.5px;
        }
        .step-title { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; margin: 0 0 12px; letter-spacing: -0.5px; color: #ffffff; }
        .step-desc { font-size: 0.88rem; color: #9c9c9c; line-height: 1.6; margin: 0; padding: 0 10px; }
        .timeline-step:hover .icon-sphere { border-color: #c43822; background: #121212; transform: translateY(-5px); box-shadow: 0 10px 25px rgba(196,56,34,0.2); }
        .timeline-step:hover .icon-sphere svg { stroke: #ffffff; }
        .timeline-step:hover .step-title { color: #c43822; }
        .timeline-step.highlight-step { cursor: pointer; }
        .timeline-step.highlight-step .icon-sphere::after {
            content: ''; position: absolute; top: 50%; left: 50%;
            transform: translate(-50%,-50%) scale(0); width: 220%; height: 220%;
            background: radial-gradient(circle, rgba(255,102,0,1) 0%, rgba(230,30,0,0.9) 35%, rgba(196,56,34,0.4) 65%, transparent 100%);
            border-radius: 50%; opacity: 0; z-index: 1;
            transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1);
        }
        .timeline-step.highlight-step:hover .icon-sphere { border-color: #ff5500; box-shadow: 0 0 30px rgba(255,85,0,0.5); transform: translateY(-7px) scale(1.05); }
        .timeline-step.highlight-step:hover .icon-sphere::after { opacity: 1; transform: translate(-50%,-50%) scale(1); }
        .timeline-step.highlight-step:hover .icon-sphere svg { stroke: #ffffff; filter: drop-shadow(0 0 4px rgba(255,255,255,0.6)); }
        @media (max-width: 991px) {
            .timeline-section { padding: 80px 20px; }
            .timeline-wrapper { flex-direction: column; gap: 50px; padding-left: 15px; }
            .timeline-wrapper::before { top: 0; left: 45px; width: 1px; height: 100%; background: linear-gradient(180deg, rgba(196,56,34,0.1) 0%, rgba(196,56,34,0.8) 50%, rgba(196,56,34,0.1) 100%); }
            .timeline-step { display: flex; text-align: left; align-items: center; gap: 25px; width: 100%; }
            .icon-sphere { margin: 0; flex-shrink: 0; width: 60px; height: 60px; }
            .step-text-block { flex: 1; }
            .step-desc { padding: 0; }
        }
