.container-orquesta {
    min-height: 100vh;
    width: 100%;
    background-image: url(../img/fondo-orquesta.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container-imagen-principal {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.orquesta-principal {
    width: 100%;
}

.contenedor-letras-orquesta {
    width: 50%;
    height: 200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: -90px;

}

.naranja-orquesta {
    font-family: 'Anton', 'Impact', sans-serif;
    font-size: 80px;
    /* Ajusta este tamaño según necesites */
    font-weight: 400;
    /* Anton ya es bold por defecto */
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fee530, #f59502);
    -webkit-background-clip: text;
    /* Para Chrome y Safari */
    background-clip: text;
    /* Estándar */
    color: transparent;
}

.letras-blancas-mayus {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.text-miniscula {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
}

/* CONTENEDOR DE BOTONES */

.contenedor-fechas-video {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}


.button-fecha {
    display: flex;
    border-radius: 10px;
    padding: 10px 15px;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    background: linear-gradient(to bottom, #fee530, #f59502);
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.calendario {
    width: 20px;
    height: 20px;
}

.button-video {
    /* --- Estilos de posición --- */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;

    /* --- Estilos de fuente básicos --- */
    font-weight: 600;
    font-size: 16px;
    position: relative;
    /* Necesario para el ::before */
    border: none;
    border-radius: 10px;
    /* Curva lógica del botón */

    /* --- APLICANDO EL DEGRADADO AL TEXTO --- */

    /* 1. El mismo degradado que usaste en el borde */
    background: linear-gradient(to right, #fee530, #f59502);

    /* 2. Recortar el fondo con la forma de las letras */
    -webkit-background-clip: text;
    background-clip: text;

    /* 3. Hacer el texto transparente para ver el degradado */
    color: transparent;
}

/* --- EL BORDE (Tu código original, se mantiene igual) --- */
.button-video::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 3px;
    /* Grosor del borde */

    background: linear-gradient(to right, #fee530, #f59502);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

/* experiencia imperial */
.contenedor-orquesta-experiencia {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    justify-content: center;
    align-items: center;

}

.naranja-orquesta2 {
    font-family: 'Anton', 'Impact', sans-serif;
    font-size: 60px;
    /* Ajusta este tamaño según necesites */
    font-weight: 400;
    /* Anton ya es bold por defecto */
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fee530, #f59502);
    -webkit-background-clip: text;
    /* Para Chrome y Safari */
    background-clip: text;
    /* Estándar */
    color: transparent;
    text-align: center;
}

.container-repertorio-chicas {
    display: flex;
    width: 100%;
    margin-top: 60px;
    justify-content: flex-start;
    gap: 80px;
}

.container-repertorio {
    display: flex;
    flex-direction: column;
    gap: 35px;
    justify-content: flex-start;
    padding-top: 40px;
}

.ico-repertorio {
    width: 50px;
    height: 50px;

}

.chicas-img {
    width: 50%;
}

.fila-repertorio {
    display: flex;
    gap: 15px;
}

.columna-repertorio {
    display: flex;
    flex-direction: column;
}

.text-blanco-repertorio {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.text-contenido-repertorio {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}


/* slider orquetsa */


/* --- ESTILOS ENCAPSULADOS PARA EL MÓDULO VIP --- */
.contenedor-deco {
    display: flex;
    justify-content: space-between;
}


#vip-superpacks-module {
    --sp-bg: #1a0505;
    --sp-gold-grad: linear-gradient(180deg, #ffdb4d 0%, #ffb300 100%);
    --sp-star-grad: linear-gradient(180deg, #ffe066 0%, #ffbf00 100%);
    --sp-gold-text: #ffcc00;
    --sp-text-dark: #000000;
    --sp-text-white: #ffffff;
    --sp-btn-bg: #000000;

    /* Reset básico para aislar del resto de la web */
    width: 100%;
    color: var(--sp-text-white);
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0px 20px;
    position: relative;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    /* Pega las imágenes a los extremos */
    align-items: center;
    /* Centra verticalmente */
    overflow: hidden;
    text-align: center;
    margin-top: -850px;
}

/* Aseguramos que el box-sizing funcione dentro */
#vip-superpacks-module * {
    box-sizing: border-box;
}

#vip-superpacks-module .sp-content-wrapper {
    flex: 1;
    /* MAGIA: Esto le dice "ocupa todo el espacio sobrante" */
    margin: 0;
    /* Quitamos el margin: auto porque flex ya lo centra */
    padding: 0 20px;
    /* Un poco de aire para que el texto no toque las imágenes */
}

/* --- BOTÓN TIKTOK --- */
#vip-superpacks-module .sp-top-cta {
    margin-bottom: 40px;
}

#vip-superpacks-module .sp-btn-tiktok {
    display: inline-block;
    border: 2px solid var(--sp-gold-text);
    color: var(--sp-gold-text);
    padding: 10px 30px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: transparent;
}

#vip-superpacks-module .sp-btn-tiktok:hover {
    background-color: var(--sp-gold-text);
    color: var(--sp-bg);
}

/* --- TEXTOS CABECERA --- */
#vip-superpacks-module .sp-header {
    margin-bottom: 50px;
}

#vip-superpacks-module .sp-subtitle {
    display: block;
    color: var(--sp-text-white);
    font-size: 16px;
    /* Usamos px para evitar herencias raras de rem */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

#vip-superpacks-module .sp-main-title {
    font-family: 'Anton', sans-serif;
    color: var(--sp-gold-text);
    font-size: 48px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 1px;
}

/* --- GRID DE TARJETAS --- */
#vip-superpacks-module .sp-cards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Alineación vertical */
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 50px;
}

/* --- TARJETA INDIVIDUAL --- */
#vip-superpacks-module .sp-card {
    background: var(--sp-gold-grad);
    border-radius: 20px;
    padding: 40px 25px;
    width: 300px;
    max-width: 100%;
    color: var(--sp-text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    text-align: center;
}

#vip-superpacks-module .sp-card:hover {
    transform: translateY(-10px);
    z-index: 5;
}

/* Estilo Tarjeta Central (Oro) */
#vip-superpacks-module .sp-card-star {
    background: var(--sp-star-grad);
    transform: scale(1.08);
    /* Un poco más grande por defecto */
    z-index: 2;
    border: 2px solid #fff2cc;
    /* Borde sutil para resaltar */
}

#vip-superpacks-module .sp-card-star:hover {
    transform: scale(1.08) translateY(-10px);
}

/* Textos dentro de la tarjeta */
#vip-superpacks-module .sp-vip-text {
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    margin: 0;
    line-height: 0.8;
    text-transform: uppercase;
    color: #000;
}

#vip-superpacks-module .sp-pack-name {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 15px 0 20px 0;
    line-height: 1.2;
    color: #000;
}

#vip-superpacks-module .sp-pack-level {
    font-weight: 700;
    font-size: 16px;
    display: block;
    margin-top: 5px;
}

#vip-superpacks-module .sp-card-body p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

/* Botón Cotizar */
#vip-superpacks-module .sp-btn-cotizar {
    background-color: var(--sp-btn-bg);
    color: var(--sp-gold-text);
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    /* Asegurar fuente */
}

#vip-superpacks-module .sp-btn-cotizar:hover {
    background-color: #333;
    color: #fff;
    transform: scale(1.05);
}

/* --- FOOTER INFERIOR --- */
#vip-superpacks-module .sp-footer {
    margin-top: 20px;
}

#vip-superpacks-module .sp-footer-title {
    font-family: 'Anton', sans-serif;
    color: var(--sp-gold-text);
    font-size: 40px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 15px;
}

#vip-superpacks-module .sp-footer-sub {
    color: var(--sp-text-white);
    font-size: 18px;
    font-weight: 500;
}

.isquierda-deco {
    width: 24%;
    height: 850px;
}


/* contacto */
/* --- ESTILOS ENCAPSULADOS FOOTER CONTACTO --- */
#contact-footer-module {
    /* Variables locales */
    --cf-bg: #0f0202;
    /* Fondo muy oscuro, casi negro */
    --cf-gold-grad: linear-gradient(180deg, #ffd700 0%, #ff8c00 100%);
    /* Amarillo a Naranja */
    --cf-text-white: #ffffff;
    --cf-text-btn: #3d0505;
    /* Color vino oscuro para el texto del botón */
    width: 100%;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

#contact-footer-module .cf-content {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* --- TEXTO SUPERIOR --- */
#contact-footer-module .cf-text {
    color: var(--cf-text-white);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    text-transform: none;
    /* O uppercase si prefieres mayúsculas */
}

/* --- GRUPO BOTONES PRINCIPALES --- */
#contact-footer-module .cf-main-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Botón Contáctanos (Pastilla) */
#contact-footer-module .cf-btn-contact {
    background: var(--cf-gold-grad);
    color: var(--cf-text-btn);
    font-family: 'Anton', sans-serif;
    /* Fuente gruesa */
    font-size: 32px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 40px;
    border-radius: 50px;
    /* Bordes totalmente redondos */
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 1.2;
    display: inline-block;
}

#contact-footer-module .cf-btn-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Botón Flecha (Círculo) */
#contact-footer-module .cf-btn-arrow {
    background: var(--cf-gold-grad);
    color: var(--cf-text-btn);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
    transition: transform 0.3s ease;
}

#contact-footer-module .cf-btn-arrow svg {
    width: 30px;
    height: 30px;
    stroke-width: 3;
    /* Grosor de la flecha */
}

#contact-footer-module .cf-btn-arrow:hover {
    transform: rotate(45deg) scale(1.1);
    /* Efecto giro al pasar mouse */
}

/* --- GRUPO REDES SOCIALES --- */
#contact-footer-module .cf-social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

#contact-footer-module .cf-icon {
    background: var(--cf-gold-grad);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    /* Color del icono dentro del círculo */
    transition: transform 0.3s ease;
}

#contact-footer-module .cf-icon svg {
    width: 28px;
    height: 28px;
}

#contact-footer-module .cf-icon:hover {
    transform: translateY(-5px);
    /* Subir un poco al pasar mouse */
}


/* carrusel orquesta */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #111;
}

#video-carousel-module {
    position: relative;
    width: 100vw;
    /* Ocupa todo el ancho de la ventana */
    height: 75vh;
    /* Alto relativo a la ventana (60%) */
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Oculta lo que se salga de la pantalla */
}

.carousel-track {
    display: flex;
    align-items: center;
    padding-left: 0; 
    gap: 1vw;
    transition: transform 0.5s ease-in-out; 
    will-change: transform;
}

.v-card {
    width: 13vw;
    height: 40vh;
    flex-shrink: 0;
    position: relative;
    border-radius: 1vw;
    overflow: hidden;
    cursor: pointer;

    /* Puedes mantener esta transición para que el CRECIMIENTO (zoom) sea suave
       o poner "none" si quieres que el tamaño también cambie de golpe */
    transition: all 0.5s ease;

    /* Estado inactivo */
    opacity: 0.4;
    transform: scale(0.9);
    filter: blur(2px) grayscale(80%);
}

.v-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- ESTADO CENTRAL (ACTIVO) --- */
.v-card.active {
    opacity: 1;
    transform: scale(1.4);
    /* Hacemos que la central sea MUCHO más grande */
    filter: blur(0) grayscale(0%);
    z-index: 10;
    /* Se pone encima de todas */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, black, transparent);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.v-card.active .card-info {
    opacity: 1;
    transform: translateY(0);
}

/* Botones */
.v-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 3rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 20;
    transition: background 0.3s;
}

.v-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.v-prev {
    left: 0;
}

.v-next {
    right: 0;
}

#video-carousel-module {
    position: relative;
    width: 100vw;
    height: 75vh;
    overflow: hidden; /* Oculta lo que sale de la pantalla */
    display: flex;
    /* No usamos justify-content center porque JS se encarga de la posición exacta */
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 1vw; /* Espacio entre imágenes */
    padding: 0; 
    width: max-content; /* El piso es tan largo como todas las tarjetas juntas */
    
    /* La magia del movimiento suave */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.v-card {
    width: 13vw; /* Ancho fijo */
    height: 40vh;
    border-radius: 1vw;
    overflow: hidden;
    position: relative;
    flex-shrink: 0; /* Evita que se aplasten */
    
    /* Transición suave para el Zoom */
    transition: all 0.5s ease;
    
    /* Estado Normal (Las de los lados) */
    opacity: 0.5;
    transform: scale(0.9); /* Un poco más pequeñas */
    filter: grayscale(60%);
}

.v-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estado Activo (La del Centro) */
.v-card.active {
    opacity: 1;
    transform: scale(1.3); /* Grande y gloriosa en el centro */
    filter: grayscale(0%);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}


.star-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Para que puedas hacer clic a través de ellas */
    z-index: 0;
    /* Asegúrate que esté detrás de tu contenido */
}

#starRain {
    position: fixed;
    /* IMPORTANTE: Se queda fijo aunque hagas scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Permite dar clic a los botones que están debajo */
    z-index: 9999;
    /* Se asegura de estar encima de todo */
}

/* --- ESTELA DE BRILLOS (CURSOR) --- */
/* AGREGA ESTO A TU CSS SI NO LO TIENES */
.star-trail {
    position: fixed;
    pointer-events: none;
    background: radial-gradient(circle, #fff 10%, #ffd700 90%);
    border-radius: 50%;
    box-shadow: 0 0 4px #ffb300;
    z-index: 9999;
    opacity: 1;
    animation: fadeAndFall 1s linear forwards;
}

@keyframes fadeAndFall {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 20px) scale(0);
    }
}

#starCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Permite hacer clic a través de la lluvia */
    z-index: 1;
    /* Encima del fondo, pero debajo de los menús/textos si es posible */
}


/* Animación de desvanecimiento suave */
.fade {
    animation-name: fade;
    animation-duration: 0.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.img-solo-movil {
    display: none;
}

@media (max-width: 500px) {

    .container-repertorio-chicas {
        flex-direction: column;
        margin-top: 30px;
        gap: 0px;
    }

    .chicas-img {
        width: 100%;
    }

    .naranja-orquesta2 {
        font-size: 26px;
        line-height: 30px;
    }

    .contenedor-letras-orquesta {
        margin-top: 0px;
        width: 100%;
        height: auto;

    }

    .naranja-orquesta {
        font-size: 70px;
        line-height: 77px;
    }

    .letras-blancas-mayus {
        font-size: 21px;
        font-weight: 700;
        margin: 20px 20px 0px 20px;
    }

    .text-miniscula {
        margin: 20px 20px 0px 20px;
    }

    .contenedor-fechas-video {
        flex-direction: column;
        margin: 20px 30px 0px 30px;
    }

    .contenedor-orquesta-experiencia {
        margin-top: 25px;
    }

    .container-repertorio {
        gap: 25px;
        margin: 0px 20px;
    }

    .text-blanco-repertorio {
        font-size: 16px;
    }

    .text-contenido-repertorio {
        font-size: 11px;
    }

    #vip-superpacks-module .sp-btn-tiktok {
        font-size: 12px;
    }

    #vip-superpacks-module .sp-content-wrapper {
        padding: 0px;
    }

    #vip-superpacks-module .sp-footer-title {
        font-size: 30px;
        line-height: 43px;
    }

    #vip-superpacks-module {
        margin-top: -685px;
        padding: 10px;
    }

    #vip-superpacks-module .sp-cards-grid {
        position: relative;
        display: block;
        width: 85%;
        max-width: 350px;
        margin: 0 auto;
    }

    /* Ocultamos todas las cartas por defecto en móvil */
    #vip-superpacks-module .sp-card,
    #vip-superpacks-module .sp-card-star {
        display: none;
        /* Se ocultan */
        width: 100%;
        margin: 0 auto;
        transform: scale(1) !important;
        padding: 25px;
    }

    /* Estilo de los botones (flechas) */
    .sp-slider-arrow {
        display: block;
        /* Ahora sí se muestran */
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.6);
        color: var(--sp-gold-text);
        border: 2px solid var(--sp-gold-text);
        font-size: 24px;
        padding: 10px;
        cursor: pointer;
        z-index: 10;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        line-height: 1;
        transition: 0.3s;
        user-select: none;
    }

    .sp-slider-arrow:hover {
        background-color: var(--sp-gold-text);
        color: black;
    }

    .sp-prev {
        left: -15px;
    }

    .sp-next {
        right: -15px;
    }

    .isquierda-deco {
        display: none;
    }

    /* 3. Hacemos visible la nueva imagen */
    .img-solo-movil {
        display: block; /* O 'inline-block' según prefieras */
        width: 100%;    /* Ajuste opcional para que ocupe el ancho */
        margin: 0 auto;   /* Para centrarla si tiene ancho definido */
    }

    #vip-superpacks-module .sp-main-title {
        font-size: 35px;
    }

    


}