
        :root {
            --golden: #cfa52f;
            --olive-dark: #62621f;
            --cream: #f8f7f9;
            --dark-brown: #3d3a2f;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--dark-brown);
            background-color: var(--cream);
        }

        .hero-video {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
        }

        .hero-video-contenido {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .text-section-video {
            space-y: 2rem;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--dark-brown);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--olive-dark);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .hero-description-video {
            color: var(--olive-dark);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .video-button {
            background-color: var(--golden);
            color: var(--dark-brown);
            border: none;
            padding: 1rem 2rem;
            font-size: 1.125rem;
            font-weight: 600;
            border-radius: 0.5rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .video-button:hover {
            background-color: #b8941f;
            transform: scale(1.05);
        }

        .play-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .video-section {
            position: relative;
        }

        .video-preview {
            background-color: var(--olive-dark);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            position: relative;
        }

        /* NUEVA CLASE PARA IMAGEN DE FONDO */
        .video-placeholder {
            aspect-ratio: 16/9;
            background-image: url('images/video_fondo.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Overlay oscuro sobre la imagen para mejor contraste */
        .video-placeholder::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .play-button-large {
            background-color: var(--golden);
            border: none;
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 2; /* Para que esté encima del overlay */
        }

        .play-button-large:hover {
            background-color: #b8941f;
            transform: scale(1.1);
        }

        .play-icon-large {
            width: 32px;
            height: 32px;
            fill: var(--dark-brown);
            margin-left: 4px;
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(61, 58, 47, 0.2), transparent);
            pointer-events: none;
            z-index: 1;
        }

        .decorative-element-1 {
            position: absolute;
            top: -1rem;
            right: -1rem;
            width: 6rem;
            height: 6rem;
            background-color: rgba(207, 165, 47, 0.2);
            border-radius: 50%;
            filter: blur(20px);
        }

        .decorative-element-2 {
            position: absolute;
            bottom: -1.5rem;
            left: -1.5rem;
            width: 8rem;
            height: 8rem;
            background-color: rgba(98, 98, 31, 0.2);
            border-radius: 50%;
            filter: blur(20px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
        }

        .scroll-mouse {
            width: 24px;
            height: 40px;
            border: 2px solid var(--olive-dark);
            border-radius: 20px;
            display: flex;
            justify-content: center;
            padding-top: 8px;
        }

        .scroll-dot {
            width: 4px;
            height: 12px;
            background-color: var(--olive-dark);
            border-radius: 2px;
            animation: scroll-bounce 2s infinite;
        }

        @keyframes scroll-bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(8px);
            }
            60% {
                transform: translateY(4px);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-video-contenido {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero-video {
                padding: 1rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.125rem;
            }

            .video-button {
                padding: 0.75rem 1.5rem;
                font-size: 1rem;
            }

            .play-button-large {
                width: 60px;
                height: 60px;
            }

            .play-icon-large {
                width: 24px;
                height: 24px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.75rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }
        }