
    /* Carousel Hero Moderno */
    .carousel-item {
        height: 100vh;
        background-color: var(--darker-bg);
        position: relative;
    }
    .carousel-item img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .carousel-overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(to right, rgba(10,10,11,0.95) 0%, rgba(10,10,11,0.4) 100%);
        z-index: 1;
    }
    .carousel-caption {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
        left: 5%;
        right: 5%;
        text-align: left;
        z-index: 2;
    }
    @media (min-width: 992px) {
        .carousel-caption {
            left: 10%;
            max-width: 60%;
        }
    }
    .carousel-indicators {
        z-index: 3;
        margin-bottom: 3rem;
        justify-content: flex-start;
        margin-left: 5%;
    }
    @media (min-width: 992px) {
        .carousel-indicators {
            margin-left: 10%;
        }
    }
    /* Indicadores estilo línea, más modernos que los puntos */
    .carousel-indicators [data-bs-target] {
        width: 40px;
        height: 3px;
        background-color: var(--text-muted);
        border: none;
        transition: all 0.4s ease;
        opacity: 0.5;
        margin-right: 8px;
    }
    .carousel-indicators .active {
        background-color: var(--gold-primary);
        width: 60px;
        opacity: 1;
    }
    /* NUEVO: Estilos para el Hero dividido y Carrusel de Flyers */
    .hero-section {
        padding-top: 70px; /* Espacio para el navbar fijo */
        padding-bottom: 60px;
        background-color: var(--dark-bg);
        position: relative;
        overflow: hidden;
    }
    .promo-carousel-container {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0,0,0,0.8);
        border: 1px solid rgba(203, 168, 106, 0.2);
    }
    #promoCarousel .carousel-item {
        height: auto; /* Sobrescribe el 100vh anterior */
    }
    #promoCarousel .carousel-item img {
        width: 100%;
        height: auto; /* Sobrescribe el 100% anterior */
        aspect-ratio: 16/9; /* Proporción ideal para flyers horizontales */
        object-fit: cover;
        background-color: var(--darker-bg);
    }
    /* Centrar indicadores del carrusel de flyers */
    #promoCarousel .carousel-indicators {
        justify-content: center;
        margin-left: 0;
        margin-bottom: 15px;
    }
    /* Flechas doradas */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: rgba(10,10,11,0.8);
        border-radius: 50%;
        background-size: 50%;
        padding: 20px;
        border: 1px solid var(--gold-primary);
    }
    .hero-title {
       font-size: clamp(2.8rem, 4vw, 3.5rem);
        font-weight: 700;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 2px;
         word-break: normal;
        overflow-wrap: normal;
    }
    .hero-title span {
        color: var(--gold-primary);
    }
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
            line-height: 1.3;
            letter-spacing: 1px;
        }
    }
    /* Botón estilo outline dorado */
    .btn-outline-gold {
        display: unset;
        color: var(--gold-primary);
        border: 2px solid var(--gold-primary);
        background: transparent;
        padding: 12px 30px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-family: 'Cinzel', serif;
        font-weight: 600;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    .btn-outline-gold::before {
        content: '';
        position: absolute;
        top: 0; left: -100%;
        width: 100%; height: 100%;
        background-color: var(--gold-primary);
        transition: left 0.4s ease;
        z-index: -1;
    }
    .btn-outline-gold:hover {
        color: var(--dark-bg);
        border-color: var(--gold-primary);
    }
    .btn-outline-gold:hover::before {
        left: 0;
    }
    /* Sección de Categorías (LO NUEVO) */
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    .section-header h2 {
        font-size: 2.5rem;
        color: var(--gold-primary);
        margin-bottom: 1rem;
    }
    .section-header p {
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto;
    }
    .category-card {
        position: relative;
        height: 400px;
        overflow: hidden;
        border-radius: 4px;
        cursor: pointer;
    }
    .category-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
    }
    .category-overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 30px;
        transition: background 0.3s ease;
    }
    .category-card:hover .category-img {
        transform: scale(1.1);
    }
    .category-card:hover .category-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(203,168,106,0.4) 100%);
    }
    .category-title {
        font-size: 2rem;
        margin-bottom: 5px;
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }
    .category-desc {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9rem;
        color: var(--gold-primary);
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .category-card:hover .category-title {
        transform: translateY(0);
    }
    .category-card:hover .category-desc {
        opacity: 1;
        transform: translateY(0);
    }
    /* --- SECCIÓN CATEGORÍAS (ARCOS) --- */
    .slider-controls { display: flex; justify-content: end; gap: 15px; margin-top: 20px; }
    .categories-section { padding: 120px 0; background-color: var(--bg-alt); }
    .arch-slider {
        display: flex; gap: 30px; overflow-x: auto;
        padding: 40px 20px; scroll-snap-type: x mandatory;
        scrollbar-width: none; scroll-behavior: smooth;
    }
    .arch-slider::-webkit-scrollbar { display: none; }
    .arch-card {
        flex: 0 0 300px; scroll-snap-align: center;
        text-decoration: none; display: block;
    }
    .arch-img-box {
        width: 100%; aspect-ratio: 2 / 2.8;
        border-radius: 150px 150px 0 0; /* FORMA DE ARCO */
        overflow: hidden; position: relative;
        box-shadow: 0 15px 35px rgba(0,0,0,0.06);
        transition: all 0.5s ease;
        border: 1px solid rgba(197, 160, 89, 0.2);
    }
    .arch-card:hover .arch-img-box {
        transform: translateY(-15px);
        border-color: var(--gold-primary);
        box-shadow: 0 25px 45px rgba(197, 160, 89, 0.2);
    }
    .arch-img-box img {
        width: 100%; height: 100%; object-fit: cover;
        transition: transform 0.8s ease;
    }
    .arch-card:hover .arch-img-box img { transform: scale(1.08); }
    .arch-title {
        text-align: center; margin-top: 25px;
        font-family: 'Cinzel', serif; font-size: 1.4rem;
        color: var(--text-light); transition: color 0.3s;
    }
    .arch-card:hover .arch-title { color: var(--gold-primary); }
    .ctrl-btn {
        width: 50px; height: 50px; border-radius: 50%;
        border: 1px solid var(--text-light); background: transparent;
        color: var(--text-light); transition: all 0.3s;
    }
    .ctrl-btn:hover { background: var(--text-light); color: black; }
    /* Info Banner */
    .info-banner {
        border-top: 1px solid rgba(203, 168, 106, 0.2);
        border-bottom: 1px solid rgba(203, 168, 106, 0.2);
        padding: 40px 0;
    }
    .info-item i {
        font-size: 2rem;
        color: var(--gold-primary);
        margin-bottom: 15px;
    }


