
        /* --- VARIABLES DE COLORES --- */
        :root {
            --borgoña-oscuro: #3A0A11;
            --borgoña-principal: #6B1D2F;
            --borgoña-claro: #8B263E;
            --cafe-oscuro: #21130B;
            --cafe-medio: #4A3124;
            --crema: #FAF6F0;
            --oro: #D4AF37;
            --texto-oscuro: #2D2D2D;
            --transicion: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* --- ESTILOS GENERALES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--crema);
            color: var(--texto-oscuro);
            line-height: 1.6;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .logo-font {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        /* --- EFECTO DE REVELADO (SCROLL ANIMATION) --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- MENÚ DE NAVEGACIÓN --- */
        nav {
            background-color: rgba(33, 19, 11, 0.96);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            backdrop-filter: blur(10px);
            transition: var(--transicion);
        }

        nav > div {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        nav .logo-brand {
            color: #fff;
            text-decoration: none;
            font-size: 1.6rem;
        }

        nav .logo-brand span {
            color: var(--oro);
            font-weight: bold;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        nav ul a {
            color: #d1c7bd;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 400;
            position: relative;
            padding: 5px 0;
            transition: var(--transicion);
        }

        nav ul a:hover, nav ul a.active-link {
            color: var(--oro);
        }

        nav ul a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--oro);
            transition: var(--transicion);
        }

        nav ul a:hover::after, nav ul a.active-link::after {
            width: 100%;
        }

        /* --- PORTADA / INICIO --- */
        #inicio {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .portada-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .portada-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.35) contrast(1.1);
            transform: scale(1.05);
            animation: panImage 20s infinite alternate ease-in-out;
        }

        @keyframes panImage {
            0% { transform: scale(1.05) translate(0, 0); }
            100% { transform: scale(1.15) translate(-1%, -1%); }
        }

        .portada-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            max-width: 850px;
            padding: 0 20px;
        }

        .portada-content span {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--oro);
            display: block;
            margin-bottom: 15px;
        }

        .portada-content h1 {
            font-size: 4rem;
            margin-bottom: 25px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
            line-height: 1.1;
        }

        .portada-content p {
            font-size: 1.3rem;
            font-style: italic;
            margin-bottom: 40px;
            color: #f5f5f5;
        }

        .portada-content a {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--borgoña-principal);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1.5px;
            box-shadow: 0 4px 15px rgba(107, 29, 47, 0.4);
            transition: var(--transicion);
            border: 2px solid var(--borgoña-principal);
        }

        .portada-content a:hover {
            background-color: transparent;
            border-color: var(--oro);
            color: var(--oro);
            transform: translateY(-5px);
        }

        /* --- CONFIGURACIÓN DE SECCIONES --- */
        section:not(#inicio) {
            padding: 110px 20px 90px 20px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header span {
            color: var(--borgoña-claro);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            display: block;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--cafe-oscuro);
            margin-top: 5px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-header h2::after {
            content: '';
            width: 80px;
            height: 3px;
            background-color: var(--oro);
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        /* --- NUEVO DISEÑO INTERACTIVO PARA HISTORIA (SIN IMÁGENES / SIN CARRUSEL) --- */
        .historia-interactive-container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: start;
            padding: 10px 0;
        }

        .historia-intro h3 {
            font-size: 2.2rem;
            color: var(--borgoña-principal);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .historia-intro p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #444;
            text-align: justify;
        }

        .historia-cards-container {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        /* Bloques con Interacciones Hover Avanzadas */
        .interactive-box {
            background-color: transparent;
            border: 1px solid rgba(107, 29, 47, 0.15);
            padding: 30px;
            border-left: 4px solid var(--borgoña-principal);
            border-radius: 0 8px 8px 0;
            transition: var(--transicion);
            cursor: pointer;
        }

        .interactive-box h4 {
            font-size: 1.3rem;
            color: var(--borgoña-principal);
            margin-bottom: 10px;
            transition: var(--transicion);
        }

        .interactive-box p {
            font-size: 0.95rem;
            color: #555;
            transition: var(--transicion);
        }

        /* Efectos interactivos al pasar el mouse por encima */
        .interactive-box:hover {
            transform: translateY(-5px);
            background-color: #fff;
            border-color: transparent;
            border-left-color: var(--oro);
            box-shadow: 0 10px 25px rgba(33, 19, 11, 0.08);
        }

        .interactive-box:hover h4 {
            color: var(--borgoña-claro);
        }

        /* --- CONTENEDORES DE CARRUSEL LIMPIOS (OTRAS SECCIONES) --- */
        .carousel-container-relative {
            position: relative;
            width: 100%;
            padding: 0 50px;
        }

        .carousel-wrapper {
            width: 100%;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            width: 100%;
        }

        /* --- ANIMACIONES EN IMÁGENES --- */
        .img-animated-container {
            overflow: hidden;
            border-radius: 8px;
            position: relative;
        }

        .img-animated-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, filter 0.5s ease;
        }

        .img-animated-container:hover img {
            transform: scale(1.06) rotate(0.5deg);
            filter: brightness(1.05);
        }

        /* --- FLECHAS UBICADAS A LOS COSTADOS --- */
        .nav-btn {
            background-color: rgba(107, 29, 47, 0.85);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transicion);
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        .nav-btn:hover {
            background-color: var(--oro);
            color: var(--cafe-oscuro);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-btn { left: 0; }
        .next-btn { right: 0; }

        /* Recuerdos: Muestra 3 imágenes al mismo tiempo */
        #carruselRecuerdos .carousel-item {
            min-width: 33.333%;
            padding: 12px;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
        }

        #carruselRecuerdos .img-animated-container {
            height: 320px;
            margin-bottom: 15px;
        }

        #carruselRecuerdos p, #carruselRecuerdos h3 {
            font-size: 0.95rem;
            text-align: center;
            padding: 0 5px;
        }

        #carruselRecuerdos p {
            font-style: italic;
            color: var(--cafe-medio);
        }

        /* Charla */
        .charla-slide {
            min-width: 100%;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: center;
        }

        .charla-text h3 {
            font-size: 2rem;
            color: var(--borgoña-principal);
            margin-bottom: 15px;
        }

        .charla-badge {
            display: inline-block;
            background-color: rgba(107, 29, 47, 0.1);
            color: var(--borgoña-claro);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Obras: Muestra 3 imágenes al mismo tiempo */
        #carruselObras .carousel-item {
            min-width: 33.333%;
            padding: 12px;
            box-sizing: border-box;
        }

        #carruselObras .img-animated-container {
            height: 400px;
        }

        #carruselObras img {
            box-shadow: 5px 5px 15px rgba(0,0,0,0.15);
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--cafe-oscuro);
            color: #fff;
            padding: 50px 20px 30px 20px;
            text-align: center;
            margin-top: 60px;
        }

        footer .footer-logo {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        footer .footer-logo span {
            color: var(--oro);
        }

        footer .social-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 30px;
        }

        footer .social-links a {
            color: #e3dcd5;
            text-decoration: none;
            transition: var(--transicion);
        }

        footer .social-links a:hover {
            color: var(--oro);
        }

        footer p {
            font-size: 0.9rem;
            color: #a89e96;
            border-top: 1px solid #3d2a1f;
            padding-top: 20px;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            nav > div { flex-direction: column; gap: 15px; }
            .portada-content h1 { font-size: 2.6rem; }
            .historia-interactive-container, .charla-slide { grid-template-columns: 1fr; }
            #carruselRecuerdos .carousel-item, #carruselObras .carousel-item { min-width: 100%; }
            .carousel-container-relative { padding: 0 40px; }
        }
    