    /* FAMILIA PARA TÍTULOS (DISPLAY) */
@font-face {
    font-family: 'NeueHaasDisplay';
    src: url('../fonts/NeueHaasGrotDisp-55Roman.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'NeueHaasDisplay';
    src: url('../fonts/NeueHaasGrotDisp-75Bold.otf') format('opentype');
    font-weight: 700;
}

/* FAMILIA PARA TEXTO (TEXT) */
@font-face {
    font-family: 'NeueHaasText';
    src: url('../fonts/NeueHaasGrotText-55Roman.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'NeueHaasText';
    src: url('../fonts/NeueHaasGrotText-56Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'NeueHaasText';
    src: url('../fonts/NeueHaasGrotText-75Bold.otf') format('opentype');
    font-weight: 700;
}

/* Fuente base para todo el sitio */
body {
    font-family: 'NeueHaasText', Helvetica, Arial, sans-serif;
    font-weight: 400;
}

/* Títulos principales y destacados */
h1, h2, .product-name {
    font-family: 'NeueHaasDisplay', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em; /* Ajuste típico para esta fuente display */
}

/* Botones y menús */
.nav-link, button {
    font-family: 'NeueHaasText', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
    
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background-color: #050505;
        background-image: none;
    }

    html {
        scroll-behavior: smooth;
    }

    .main-header {
        background-color: #000000;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #111;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .logo-container {
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }

    .logo-container-admin {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

    .nav-categories {
        flex: 2;
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .nav-categories a {
        color: #ffffff;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 3px;
        font-weight: 300;
        transition: opacity 0.3s ease;
    }

    .nav-categories a:hover {
        opacity: 0.6;
    }

    .header-spacer {
        flex: 1;
    }

    .banner {
    width: 100%;
    /* Usamos min-height para que el contenedor crezca si el texto aumenta por el zoom */
    min-height: 80vh; 
    position: relative;
    overflow: hidden;
    background: #000;
    
    /* Alineación dinámica con Flexbox */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrado vertical real */
    align-items: center;  
    margin-bottom: -150px;
    z-index: 1;  /* Centrado horizontal */
}

.banner img {
    position: absolute; /* La imagen ahora es un fondo real detrás del texto */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.65); /* Mejora el contraste del texto al hacer zoom */
}

.banner-text-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    width: 90%;
    max-width: 1200px;
    /* Al no tener 'top', los elementos internos fluyen uno tras otro */
}

.banner-overlay {
    color: #ffffff;
    font-weight: 775;
    font-size: 5.5rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    line-height: 1;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

.banner-suboverlay {
    color: #ffffff;
    font-weight: 400;
    font-size: clamp(1.1rem, 3vw, 2rem);
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    position: relative;
    text-transform: uppercase;
    top: auto;
    left: auto;
    transform: none;
}

    .banner::after {
        content: '';
        z-index: 5;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40%;
        background: linear-gradient(to top, #050505, transparent);
        pointer-events: none;
    }

    .category-header {
        margin-bottom: 30px;
        padding-bottom: 15px;
        position: relative;
        z-index: 1;
    }

    .category-header h2 {
        font-size: 4rem;
        font-weight: 750;
        letter-spacing: 0px;
        color: #fff;
        text-align: center;
    }

    .carousel-container {
        position: relative;
        display: flex;
        align-items: center;
        z-index: 1;
    }

    .card-grid {
        scroll-snap-type: x mandatory;
        background: transparent;
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth; /* Refuerza el movimiento suave nativo */
        -webkit-overflow-scrolling: touch;
        will-change: scroll-position;
    }

    .card-festival-drop,
    .card-concierto-artista,
    .card-viaje,
    .card-set {
        scroll-snap-align: start;
    }

    .card-grid-festival-drop {
        display: flex;
        flex-wrap: nowrap;
        gap: 25px;
        overflow-x: auto;
        width: 100%;
        scroll-behavior: smooth;
        padding: 20px 5px 60px 5px;
        -ms-overflow-style: none;
        scrollbar-width: none;
        margin-bottom: -13%;
    }

    .card-grid-festival-drop::-webkit-scrollbar {
        display: none;
    }

    .card-festival-drop {
        background: transparent;
        flex: 0 0 calc(33.333% - 17px);
        min-width: 380px;
        height: 400px;
        position: relative;
        transition: transform 0.3s ease;
    }

    .card-festival-drop:hover {
        transform: translateY(-8px);
    }

    .card-image-wrapper-festival-drop {
        width: 100%;
        height: 250px;
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid #1a1a1a;
    }

    .card-image-wrapper-festival-drop img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(80%);
        transition: transform 0.6s ease;
    }

    .card:hover .card-image-wrapper-festival-drop img {
        transform: scale(1.1);
    }

    .card-glass-box {
        position: absolute;
        top: 170px;
        left: 50%;
        transform: translateX(-50%);
        width: 88%;
        padding: 25px;
        z-index: 2;
        background: rgba(25, 25, 25, 0.65);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
        max-height: 200px;
        overflow: hidden;
    }

    .card-glass-box h3 {
        font-size: 1.3rem;
        color: #fff;
        margin-bottom: 10px;
        font-weight: 800;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .card-glass-box p {
        color: #ddd;
        font-size: 0.9rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .card-grid-concierto-artista {
        display: flex;
        flex-wrap: nowrap;
        gap: 24px;
        overflow-x: auto;
        width: 100%;
        scroll-behavior: smooth;
        padding: 20px 5px 40px 5px;
        scrollbar-width: none;
    }

    .card-grid-concierto-artista::-webkit-scrollbar {
        display: none;
    }

    .card-concierto-artista {
        flex: 0 0 298px;
        height: 400px;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease;
        background-color: #000;
    }

    .card-concierto-artista:hover {
        transform: translateY(-8px);
    }

    .card-image-wrapper-concierto-artista {
        width: 100%;
        height: 240px;
        position: relative;
        display: flex;
    }

    .card-image-wrapper-concierto-artista img {
        width: 298px;
        height: 216px;
        object-fit: cover;
        filter: brightness(90%);
        transition: transform 0.6s ease;
    }

    .card-concierto-artista:hover img {
        transform: scale(1.05);
    }

    .card-image-wrapper-concierto-artista::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,1.1) 40%, transparent 100%);
        z-index: 1;
    }

    .card-content-concierto-artista {
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 25px;
        z-index: 2;
        align-content: center;
        margin-top:-25px;
    }

    .card-content-concierto-artista h3 {
        font-size: 1.4rem;
        color: #ffffff;
        margin-bottom: 8px;
        font-weight: 700;
        line-height: 1.2;
    }

    .card-content-concierto-artista p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-grid-viaje {
        display: flex;
        flex-wrap: nowrap;
        gap: 25px;
        overflow-x: auto;
        width: 100%;
        scroll-behavior: smooth;
        padding: 20px 5px 40px 5px;
        scrollbar-width: none;
    }

    .card-grid-viaje::-webkit-scrollbar {
        display: none;
    }

    .card-viaje {
        flex: 0 0 400px;
        height: 410px;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease;
        background-color: #000;
    }

    .card-viaje:hover {
        transform: translateY(-8px);
    }

    .card-image-wrapper-viaje {
        width: 100%;
        height: 240px;
        position: relative;
        display: flex;
    }

    .card-image-wrapper-viaje img {
        width: 410px;
        height: 216px;
        object-fit: cover;
        filter: brightness(90%);
        transition: transform 0.6s ease;
    }

    .card-viaje:hover img {
        transform: scale(1.05);
    }

    .card-image-wrapper-viaje::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,1.1) 40%, transparent 100%);
        z-index: 1;
    }

    .card-content-viaje {
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 25px;
        z-index: 2;
        align-content: center;
        margin-top:-25px;
    }

    .card-content-viaje h3 {
        font-size: 1.4rem;
        color: #ffffff;
        margin-bottom: 8px;
        font-weight: 700;
        line-height: 1.2;
    }

    .card-content-viaje p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-grid-set {
        display: flex;
        flex-wrap: nowrap;
        gap: 25px;
        overflow-x: auto;
        width: 100%;
        scroll-behavior: smooth;
        padding: 20px 5px 40px 5px;
        scrollbar-width: none;
    }

    .card-grid-set::-webkit-scrollbar {
        display: none;
    }

    .card-set {
        flex: 0 0 298px;
        height: 349px;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease;
        background-color: #000;
    }

    .card-set:hover {
        transform: translateY(-8px);
    }

    .card-image-wrapper-set {
        width: 100%;
        height: 240px;
        position: relative;
        display: flex;
    }

    .card-image-wrapper-set img {
        width: 298px;
        height: 216px;
        object-fit: cover;
        filter: brightness(90%);
        transition: transform 0.6s ease;
    }

    .card-set:hover img {
        transform: scale(1.05);
    }

    .card-image-wrapper-set::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,1.1) 40%, transparent 100%);;
        z-index: 1;
    }

    .card-content-set {
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        z-index: 2;
        align-content: center;
        margin-top:-25px;
    }

    .card-content-set h3 {
        font-size: 1.4rem;
        color: #ffffff;
        margin-bottom: 8px;
        font-weight: 700;
        line-height: 1.2;
    }

    .card-content-set p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        padding-right:40px;
    }

    .play-button {
        position: absolute;
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        background-color: #050505;
        border: 0.5px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .play-button svg {
        width: 25px;
        height: 25px;
        color: #ffffff;
        margin-left: 1px;
    }

    .nav-btn {
        position: absolute;
        top: 125px;
        background: rgba(0, 0, 0, 0.7);
        color: #ffffff;
        border: 1px solid #333;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 20;
        font-size: 1.2rem;
        display: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .nav-btn:hover {
        background: #fff;
        color: #000;
        border-color: #fff;
    }

    .nav-btn.prev { left: -25px; }
    .nav-btn.next { right: -25px; }

    .container-pageCard {
        max-width: 1400px;
        margin: 0 auto;
        padding: 60px 20px;
    }

    .container-pageCard > div:first-child {
        text-align: center;
        margin-bottom: 60px;
    }

    .container-pageCard h2 {
        font-size: 3.5rem;
        text-transform: capitalize;
        letter-spacing: 8px;
        font-weight: 300;
        color: #fff;
        position: relative;
        z-index: 1;
    }

    .content-pageCard {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .video-container {
        width: 100%;
        max-width: 960px;
        aspect-ratio: 16 / 9;
        background: #000;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    }

    .video-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .description-card {
        width: 100%;
        max-width: 900px;
        color: #bbb;
        font-size: 1.2rem;
        line-height: 1.8;
        text-align: center;
        white-space: pre-line;
        overflow-wrap: break-word;
        word-wrap: break-word;
        padding-bottom: 40px;
    }

    .card-image-wrapper-festival-drop,
    .card-image-wrapper-concierto-artista,
    .card-image-wrapper-viaje,
    .card-image-wrapper-set {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
    }

    .card-status-badge {
        position: absolute;
        top: 30px;
        right: -60px;
        background-color: #ffffff;
        color: #000000;
        width: 250px;
        min-height: 35px;
        padding: 5px 62px;
        font-size: 0.65rem;
        font-weight: 800;
        text-transform: uppercase;
        transform: rotate(45deg);
        display: flex;
        justify-content: center;
        align-items: center;
        white-space: normal;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        font-family: 'Montserrat', sans-serif;
        letter-spacing: 1.5px;
        pointer-events: none;
        margin-right: -15px;
        text-align: center;
        margin-left: -15px;
    }

    .main-footer {
        background: transparent;
        padding: 15px 0 40px 0;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #ffffff;
    }

    .footer-top {
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-logo {
        height: 100px;
        width: auto;
        filter: brightness(1.2);
    }

    .footer-brand {
        font-family: 'Playfair Display', serif; /* La fuente que usamos para los títulos */
        font-size: 1.2rem;
        letter-spacing: 8px;
        font-weight: 400;
        margin: 0;
    }

    .footer-social-container {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 1400px;
        padding: 0 20px;
    }

    .footer-line {
        flex: 1;
        height: 1px;
        /* Crea el efecto de desvanecimiento hacia el centro */
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2));
    }

    .footer-line:last-child {
        background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.2));
    }

    .social-icons {
        display: flex;
        gap: 25px;
        padding: 0 30px;
    }

    .social-icons a {
        color: #ffffff;
        font-size: 1.3rem;
        text-decoration: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0.8;
    }

    .social-icons a:hover {
        transform: translateY(-3px);
        opacity: 1;
    }




    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 60px 20px;
        position: relative; /* Base para las burbujas */
    }

    .category-block {
        max-height:450px;
        position: relative;
        margin-bottom: 130px;
        scroll-margin-top: 130px;
        z-index: 1; /* Por encima de las luces */
    }

    .bg-ambient-lights {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%; /* Extendemos un poco para el brazo de la X */
        z-index: 0;
        pointer-events: none;
        overflow: visible;
    }

    .light-shape {
        position: absolute;
        background: radial-gradient(ellipse at 50%, #f7d500 0%, transparent 60%);
        filter: blur(130px);
        border-radius: 50%;

    }

    .shape-1 {
        width: 700px;
        height: 550px;
        top: -15%;
        left: -10%;
    }

    /* BRAZO INFERIOR DERECHO - Más pequeño y desplazado */
    .shape-2 {
        width: 450px;
        height: 450px;
        bottom: -5%;
        right: 5%;
        opacity: 0.6;
    }

    /* BRAZO SUPERIOR DERECHO - Estirado horizontalmente */
    .shape-3 {
        width: 500px;
        height: 400px;
        top: 5%;
        right: 15%;
    }

    /* BRAZO INFERIOR IZQUIERDO - Denso y bajo */
    .shape-4 {
        width: 550px;
        height: 550px;
        top: 10%;
        left: 15%;
        opacity: 0.7;
    }

    /* NÚCLEO DESCENTRADO - Une la X de forma irregular */
    .shape-5 {
        width: 350px;
        height: 350px;
        top: 45%;
        left: 40%;
        background: radial-gradient(circle, rgba(247, 213, 0, 0.18) 0%, transparent 65%);
        filter: blur(100px);
    }

    @keyframes floating-glow {
        0%, 100% {
            transform: scale(1) translate(0, 0);
            opacity: 0.4;
        }
        33% {
            transform: scale(1.08) translate(20px, -15px); /* Movimiento un poco más sutil por el tamaño menor */
            opacity: 0.55;
        }
        66% {
            transform: scale(0.97) translate(-15px, 25px);
            opacity: 0.45;
        }
    }

    @keyframes floating-center {
        0%, 100% {
            transform: translate(-50%, 0) scale(1);
        }
        50% {
            /* Mantiene el centrado horizontal (-50%) mientras flota */
            transform: translate(-50%, 15px) scale(1.03);
        }
    }

    /* --- CONFIGURACIÓN PÁGINA DE DETALLE (INTERMEDIO) --- */

    body:has(.container-pageCard) .bg-ambient-lights {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: -1;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    body:has(.container-pageCard) .light-shape {
        position: absolute;
        /* Cambio a elipse para suavizar el óvalo */
        background: radial-gradient(ellipse at center, #f7d500 0%, transparent 60%);
        filter: blur(120px); /* Blur ajustado al tamaño intermedio */
        border-radius: 50%;
        animation: floating-center 12s ease-in-out infinite;
    }

    /* Burbuja Superior Central */
    body:has(.container-pageCard) .shape-1 {
        width: 650px;  /* Antes 900px */
        height: 650px; /* Antes 700px */
        top: 7%;
        left: 40%;
        opacity: 0.5;
        transform: translateX(-50%);
        animation-duration: 15s;
    }

    /* Burbuja Media Derecha */
    body:has(.container-pageCard) .shape-2 {
        width: 650px;  /* Antes 800px */
        height: 650px; /* Antes 800px */
        top: 35%;
        left: 40%;
        opacity: 0.5;
        animation-duration: 13s;
        animation-delay: -3s;
    }

    /* Burbuja Media Izquierda */
    body:has(.container-pageCard) .shape-3 {
        width: 550px;  /* Antes 900px */
        height: 550px; /* Antes 700px */
        top: 25%;
        left: 75%;
        opacity: 0.5;
        transform: translateX(-50%);
        animation-duration: 11s;
    }


    body:has(.container-pageCard) .shape-4 {
        width: 550px;
        height: 650px;
        top: 55%;
        left: 65%;
        opacity: 0.5;
        animation-duration: 13s;
        animation-delay: -1s;
    }

    /* Núcleo de la "X" (Pequeño y centrado) */
    body:has(.container-pageCard) .shape-5 {
        width: 550px;  /* Antes 800px */
        height: 550px; /* Antes 800px */
        top: 73%;
        left: 35%;
        opacity: 0.5;
        animation-duration: 9s;
        animation-delay: -3s;
    }

    .modal {
        display: none;
        position: fixed; /* Mantiene el modal flotando sobre la vista actual */
        z-index: 3000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.95);
        align-items: center;
        justify-content: center;
        /* Evita que el modal mismo genere un scroll infinito si el form es largo */
        overflow-y: auto;
    }

    @media (max-width: 1100px) {
        .main-header{
            min-height:150px;
        }

        .nav-categories {
                display: none !important;
            }

        .main-logo{
            height:150px;
        }

        .logo-container{
            justify-content: center;
        }
        .banner-overlay{
            top: 40%;
            font-size:6.5rem;
        }
        .banner-suboverlay{
            top: 60%;
            font-size:3rem;
            font-weight: 400;
        }

        header-content{
            display: flex;
            align-items: center; /* Este es el truco mágico para el centrado vertical */
            justify-content: space-between; /* Separa el logo a la izquierda y el nav a la derecha */
            height: auto; /* Asegúrate de que el contenedor ocupe odo el alto del header */
        }
        .card { flex: 0 0 calc(50% - 13px); min-width: 320px; }
        .category-block {
            max-height:850px;
        }
        .category-header h2{
            font-size:5rem;
        }
        .card-grid {
            display: flex;
            align-items: stretch; /* Asegura que todas las tarjetas mantengan el mismo alto */
            overflow-x: auto;
            overflow-y: visible; /* IMPORTANTE: Permite que la glass-box respire hacia abajo */
            padding-bottom: 200px;
        }
        .card-grid-festival-drop {
                margin-bottom: -5%;
            }
        .card-festival-drop {
                /* Al poner 60%, la tarjeta ocupa más de la mitad de la pantalla */
                flex: 1 0 90%;
                min-width: 350px; /* Evita que se achiquen de más */

                /* 2. Le damos mucha más altura */
                aspect-ratio: 16 / 9; /* Proporción más rectangular y grande */
                height: auto; /* Altura física mayor para que tenga presencia */

                display: flex;
                flex-direction: column;
                position: relative;
            }
        .card-image-wrapper-festival-drop {
            width: 100%;
            height: 100%; /* Si la tarjeta ya tiene un alto fijo, esto la estira al 100% */
            position: absolute; /* Para que la imagen sea el fondo de la tarjeta */
            top: 0;
            left: 0;
            overflow: hidden; /* Corta lo que sobre de la imagen */
            z-index: 1;

        }
        .card-glass-box {
            top: 80%;
            padding-bottom: 225px;
        }
        .card-glass-box h3 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 10px;
            font-weight: 800;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        .card-glass-box p {
            color: #ddd;
            font-size: 1.75rem;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        .header-content { padding: 0 20px; }
        .banner{
            width: 100%;
            min-height: 950px;
            max-height: 1250px;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            }

            .banner img {
                width: 100%;
                height: 100%;
                object-fit: cover; /* Evita que la foto se estire feo al achicar el contenedor */
                object-position: center; /* Centra la imagen para que no se pierda lo importante */
            }

            /* Opcional: Si quieres que el título de la página suba un poco más */
            .container-pageCard {
                margin-top: 30px;
                padding: 0 20px;
            }

            .description-card{
                font-size:2.5rem;
            }



        .card-grid-concierto-artista {
                gap: 35px;
                padding: 20px 20px 80px 20px;
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
            }

            /* 2. Tarjeta: Tamaño masivo (70% del ancho) */
            .card-concierto-artista {
                flex: 0 0 70%;
                min-width: 450px; /* Para que no se achique en pantallas menores */
                min-height: 750px;   /* Altura bien imponente */
                border-radius: 25px;
                scroll-snap-align: center; /* Se imanta al centro de la pantalla */
                background-color: #000;
                box-shadow: 0 15px 45px rgba(0,0,0,0.6);
            }

            /* 3. Wrapper de Imagen: Ocupa gran parte de la tarjeta */
            .card-image-wrapper-concierto-artista {
                width: 100%;
                height: 400px; /* Mucho más espacio para la foto del artista */
                overflow: hidden;
            }

            .card-image-wrapper-concierto-artista img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                filter: brightness(80%); /* Un poco más oscuro para que resalte el texto */
                padding-left: 1px;
                padding-bottom: 2px;
            }

            /* 4. Contenido: Tipografía de alto impacto */
            .card-content-concierto-artista {
                padding: 40px;
                margin-top: -10px; /* Mayor solapamiento con la imagen */
                position: relative;
                z-index: 5;
            }

            .card-content-concierto-artista h3 {
                font-size: 2.5rem; /* Título gigante */
                margin-bottom: 15px;
                font-weight: 900;
                line-height: 1;
                letter-spacing: -1px;
            }

            .card-content-concierto-artista p {
                font-size: 1.75rem; /* Descripción grande y legible */
                line-height: 1.6;
                color: rgba(255, 255, 255, 0.9);
                -webkit-line-clamp: 3;
            }

            /* Ajuste del degradado para cubrir el nuevo tamaño */
            .card-image-wrapper-concierto-artista::after {
                position: absolute;
                top: 75%;
                height: 30%;
                background: to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,1) 40%, transparent 100%;
            }



        .card-grid-viaje {
                gap: 35px;
                padding: 20px 20px 80px 20px;
                scroll-snap-type: x mandatory;
            }

            /* 2. Tarjeta: Casi pantalla completa y más alta */
            .card-viaje {
                flex: 0 0 90%; /* 90% del ancho para que solo asome un borde de la otra */
                height: 750px;  /* Altura masiva tipo póster vertical */
                min-width: 500px;
                border-radius: 30px; /* Bordes más curvos para el tamaño grande */
                scroll-snap-align: center;
            }

            /* 3. Wrapper de Imagen: Estiramos la altura de la foto significativamente */
            .card-image-wrapper-viaje {
                width: 100%;
                height: 550px; /* Aquí es donde estiras la imagen */
                overflow: hidden;
            }

            .card-image-wrapper-viaje img {
                width: 100%;
                height: 80%;
                object-fit: cover; /* Mantiene la calidad de la foto de viaje sin deformar */
                filter: brightness(85%);
                padding-left: 2px;
            }

            /* 4. Contenido: Tipografía XL para acompañar el tamaño */
            .card-content-viaje {
                padding: 45px;
                margin-top: -125px; /* Solapamiento agresivo para estilo moderno */
                position: relative;
                z-index: 5;
            }

            .card-content-viaje h3 {
                font-size: 2.8rem; /* Fuente gigante para el destino */
                font-weight: 900;
                margin-bottom: 15px;
                letter-spacing: -1px;
            }

            .card-content-viaje p {
                font-size: 1.3rem; /* Descripción tipo párrafo de revista */
                line-height: 1.6;
                color: rgba(255, 255, 255, 0.9);
                -webkit-line-clamp: 4; /* Permitimos una línea más de texto */
            }

            /* Degradado profundo para que el texto sea legible sobre la foto */
            .card-image-wrapper-viaje::after {
                position: absolute;
                top:55%;
                height: 30%;
                background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,1) 40%, transparent 100%);
                z-index: 0;
            }

        .card-grid-set {
                    display: flex !important;
                    gap: 20px !important;
                    padding: 20px !important;
                    overflow-x: auto !important;
                    scroll-snap-type: x mandatory;
                    -webkit-overflow-scrolling: touch;
                }

                .card-set {
                    /* 1. Aumentamos el ancho al 85% para que la tarjeta sea la protagonista absoluta */
                    /* Esto deja un 15% para que la siguiente tarjeta asome sutilmente */
                    flex: 0 0 85% !important;

                    /* 2. Elevamos la altura mínima para mantener la verticalidad en pantallas grandes */
                    min-height: 600px !important;
                    max-height: 600px;
                    /* Bloqueamos un ancho máximo para tablets para que no se deforme demasiado */
                    max-width: 600px !important;
                    min-width: 600px;
                    background-color: #000 !important;
                    border-radius: 20px !important;
                    display: flex !important;
                    flex-direction: column !important;
                    scroll-snap-align: start;
                    overflow: hidden !important;
                }

                .card-image-wrapper-set {
                    width: 100% !important;
                    min-height: 350px !important;
                    flex-shrink: 0 !important;
                    position: relative; /* ASEGURATE DE QUE TENGA ESTO */
                    overflow: hidden;
                    border-radius: inherit;
                }

                .card-image-wrapper-set img {
                    width: 100% !important;
                    height: 100% !important;
                    object-fit: cover !important;
                    object-position: center !important;
                    border-radius: 0;
                    padding-left: 2px;
                }

                .card-content-set {
                    padding: 25px 20px !important; /* Más espacio interno para que el texto respire */
                    flex-grow: 1 !important;
                    display: flex !important;
                    flex-direction: column !important;
                    justify-content: flex-start !important;
                }

                .card-content-set h3 {
                    font-size: 2.5rem !important; /* Título más imponente */
                    margin-bottom: 10px !important;
                    line-height: 1.2 !important;
                    font-weight: 800 !important;
                }

                .card-content-set p {
                    font-size: 1.75rem !important;
                    color: #a0a0a0 !important;
                    line-height: 1.5 !important;
                    -webkit-line-clamp: 3 !important;
                    padding-right:100px;
                }

                .play-button {
                    width: 80px !important;
                    height: 80px !important;
                    bottom: 25px !important;
                    right: 20px !important;
                }

                .play-button svg {
                        width: 45px;
                        height: 45px;
                        color: #ffffff;
                        margin-left: 1px;
                    }

                .card-image-wrapper-set::after {
                    position: absolute;
                    top: 75%;
                    height: 105px;
                    /* Hacemos que sea un poco más ancho y lo desplazamos a la izquierda */
                    left: 0;
                    right: 0;
                    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,1) 40%, transparent 75%);
                    z-index: 1;
                }

                .nav-btn {
                        display: none !important;
                    }

                .card-status-badge {
                        /* 1. Escalamos la posición para que no se salga de la tarjeta grande */
                        top: 60px;
                        right: -55px;

                        /* 2. Aumentamos el grosor y largo de la cinta */
                        width: 320px;
                        min-height: 55px;
                        padding: 5px 70px;

                        /* 3. Tipografía mucho más grande y pesada */
                        font-size: 1.1rem; /* Casi el doble del original */
                        letter-spacing: 2.5px;
                        line-height: 1.2;

                        /* 4. Sombra más profunda para que "salte" de la imagen masiva */
                        box-shadow: 0 6px 15px rgba(0,0,0,0.6);

                }
                .footer-logo{
                    height:200px;
                    width:auto;
                }
                .footer-line{
                    height:7px;
                }
                .social-icons a{
                    font-size:3rem;
                }

    }

    @media (max-width: 700px) {
        .card { flex: 0 0 85%; min-width: 280px; }
        .nav-btn { display: none !important; }
        .banner{
            max-height:100px;
        }
        .container-pageCard h2 {
            font-size: 2.2rem;
            letter-spacing: 4px;
        }
        .video-container {
            max-width: 100%;
        }
        .header-content {
            flex-direction: column;
            gap: 15px;
        }
        .header-spacer { display: none; }
    }


    @media (max-width: 768px) {
        .bg-ambient-lights {
            width: 100%;
            max-width: 100vw;
            overflow: hidden; /* Corta cualquier luz que se quiera salir */
            position: absolute;
        }

        /* 2. Ajustamos la burbuja shape-3 que es la que causa el problema */
        .shape-3 {
            width: 100% !important; /* Que no mida 824px, sino el ancho del cel */
            height: 300px !important;
            right: 0 !important;
            top: 10% !important;
            filter: blur(60px); /* Un blur más pequeño ayuda al rendimiento */
        }

        /* 3. Por seguridad, achicamos todas las luces en móvil */
        .light-shape {
            max-width: 100vw;
        }

        /* 4. El "candado" final para la barra negra */
        html, body {
            overflow-x: hidden;
            width: 100%;
            margin: 0;
            padding: 0;
        }
        .footer-brand {
            font-size: 1rem;
            letter-spacing: 5px;
        }
        .social-icons {
            gap: 15px;
            padding: 0 15px;
        }
        .social-icons a {
            font-size: 1.1rem;
        }
    }

/* Escondemos el input original pero lo mantenemos funcional */
.color-label input[type="color"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.color-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  color: #fff;
}

/* Este círculo reemplaza visualmente a la "línea" gris */
.color-preview {
  width: 35px;
  height: 35px;
  border-radius: 50%; /* O 4px para cuadrado */
  border: 2px solid #555;
  background-color: #e74c3c; /* Debe coincidir con el value del input */
  transition: transform 0.2s;
}

.color-preview:hover {
  transform: scale(1.1);
  border-color: #fff;
}

