body{
    font-family: 'Montserrat', sans-serif;
    background: #16151BFF;
    background: linear-gradient(0deg, rgba(22, 21, 27, 1) 0%, rgba(23, 38, 71, 1) 52%, rgba(26, 29, 64, 1) 75%, rgba(0, 0, 0, 1) 99%);
}
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
/* Estilos para el spinner */
/* .spinner {
  border: 16px solid #f3f3f3; 
  border-radius: 50%;
  border-top: 16px solid #005d92; 
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

/* Animación del spinner */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.modal {
  display: none; /* Inicialmente oculto */
  position: fixed; 
  flex-direction: column;
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: hidden; 
  background-color: rgba(0,0,0,0.8); /* Fondo más oscuro */
  justify-content: center;
  align-items: center;
}


.spinCont{
    width: 100%;
    height: 100%;
  background-color: rgba(0,0,0,0.8); /* Fondo más oscuro */
}



.spinCont img {
    position: absolute;
    width: 100%;
    object-fit: contain;
}

/* Círculo interno (fijo) */
/* .spin-in {
    z-index: 2;
    height: 150px;
    animation: zoom 1.1s linear infinite;
} */

.spin-in {
    z-index: 2;
    height: 140px;
    animation: zoom 1.1s linear infinite;
}

/* Círculo externo que rota */
.spin-out {
    z-index: 1;
    height: 165px;
    animation: spin360 4s linear infinite;
    /* animation: agrandito 1.1s linear infinite; */
}
.center{
    justify-content: center;
    align-items: center;
}
/* Animación */
@keyframes spin360 {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes agrandito {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    } 
    
}
@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
    /* from {transform: rotateY(180deg);}
    to {transform: rotateY(-180deg);} */
}


.c-primario{
    color: #23c0e9;
}
.c-primario-h{
    color: #36c4e7;
}
.bg-plus{
    background-color: #9c539aff;
}
.bg-full{
    background-color: rgb(77, 41, 148);
}
.bg-full, .bg-plus{
    position: absolute;
    margin-left: 10px;
    font-weight: 900;
}
#logoTop {
    transition: opacity 0.5s ease;
}

#hashtag {
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;

    background: linear-gradient(45deg, #23c0e9, #0046b8, #27b3d6, #034cc2);
    background-size: 500%;
    background-position: 0% 50%;

    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;

    color: transparent;

    animation: moverGradiente 3s linear infinite;
}

/* animación del gradiente */
@keyframes moverGradiente {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;

    background: linear-gradient(
        148deg,
        rgba(22, 21, 27, 1) 0%,
        rgba(23, 38, 71, 1) 28%,
        rgba(26, 29, 64, 1) 87%,
        rgba(0, 0, 0, 1) 96%
    );
    opacity: 0.7;
}

.hero-inner {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin-top: 0; /* opcional, ya no lo necesitás */
    font-family: 'Montserrat', sans-serif;
}


.hero-top-text {
    color: #23c0e9;
    font-weight: 800;
    font-size: 1.7rem;
    letter-spacing: 1px;
}

.hero-main-title {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin: 40px 0;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.count-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.count-number {
    font-size: 4rem;
    font-weight: 800;
    color: #23c0e9;
}

.count-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn-out {
    position: relative;
    padding: 12px 40px;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background: #0000; /* transparente */
    z-index: 1;
}

.btn-out::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* grosor del borde */
    border-radius: 40px;
    background: linear-gradient(90deg, #23c0e9, #0046b8);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    z-index: -1;
}

.btn-out:hover {
    background: linear-gradient(90deg, #23c0e9, #0046b8);
    color: white;
    transform: translateY(-3px);
}


.btn-pri {
    padding: 12px 40px;
    border-radius: 40px;
    border: none;
    background: linear-gradient(90deg, #23c0e9, #0046b8);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition:  all 0.3s;
}

.btn-pri:hover {
    filter: brightness(1.3);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {

    .hero-main-title {
        font-size: 2.2rem;
    }

    .countdown-container {
        flex-wrap: wrap;
        gap: 40px;
    }

    .count-number {
        font-size: 2.5rem;
    }
    .ec-1 { order: 1; }
    .ec-3 { order: 2; }
    .ec-2 { order: 3; }

}


/* - carousel - carousel- carousel- carousel- carousel- carousel- carousel
- carousel- carousel- carousel- carousel- carousel- carousel- carousel
- carousel- carousel- carousel- carousel- carousel- carousel- carousel */

.artistas-carousel-section {
    height: 100vh;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.623);
    z-index: 3;
}

.carousel-inner,
.carousel-item {
    height: 100vh;
}

.artistas-split {
    display: flex;
    height: 100%;
    width: 100%;
}

.artista-half {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.artista-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artista-half .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #162141ff;
    opacity: 0.55;
}

.artista-nombre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 7rem;
    text-align: center;
    letter-spacing: -3px;
    z-index: 3;
}

/* Indicadores personalizados */
.dias-indicadores {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    z-index: 10;
}

.dias-indicadores button {
    background: none;
    border: none;
    color: #9999996c;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    cursor: pointer;
    transition: 0.3s;
}

.dias-indicadores button.active,
.dias-indicadores button:hover {
    color: #23c0e9;
    transform: scale(1.1);
}

/* Flechas */
.custom-arrow {
    width: 40px;
    height: 40px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 80px;
}

/* Mobile: se apilan verticalmente */
@media (max-width: 768px) {

    .artistas-split {
        flex-direction: column;
    }

    .artista-half {
        width: 100%;
        height: 50%;
    }

    .artista-nombre {
        font-size: 2.5rem;
    }

    .dias-indicadores {
        gap: 20px;
        font-size: 1rem;
    }
    .dias-indicadores button {
    font-size: 1.5rem;
    letter-spacing: -1px;
}
}
.dias-indicadores button.active {
    color: #23c0e9;
    transform: scale(1.1);
}



/*EENTRADAS*/

.entradas {
    width: 100%;
    min-height: 100vh;

    background-image: url('/static/images/bg-entradas.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}
.descripcion{
  font-size: 1.1rem;
  line-height: normal;
}
.titulo-card {
  font-size: 1.7rem;
}


.entradas-card {
    width: 100%;
    max-width: 420px;
    height: 700px!important;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.836);
    transition: transform 0.3s ease;
}
.entradas-card:hover{
  /* transform: translateY(-5px); */
  transform: scale(1.01);
}
.entradas-card-header1 {
    height: 300px;
    background-image: url('/static/images/entrada1.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.entrada-header-title {
    color: white;
    font-weight: 700;
    letter-spacing: -1px;
    text-align: center;
    font-size: 1.7rem;
    z-index: 2;
}
.entradas-card-body1{
  background-image: url('/static/images/entrada11.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  height: 400px;
}

.entradas-card-header2 {
    height: 300px;
    background-image: url('/static/images/entrada2.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.entradas-card-body2{
  background-image: url('/static/images/entrada22.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  height: 400px;
}

.entradas-card-header3 {
    height: 300px;
    background-image: url('/static/images/entrada3.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.entradas-card-body3{
    background-image: url('/static/images/entrada33.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    height: 400px;
}

/*ubicacion*/


.predio {
    position: relative;
    text-align: center;
    width: 100%;
    min-height: 80vh;
    color: white;
    background-image: url('/static/images/predio.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay radial encima del fondo */
.predio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: radial-gradient(
        circle,
        rgba(26, 30, 65, 0.6) 0%,
        #11132aff 100%
    );

    z-index: 1;
}

/* Para que tu contenido esté por encima */
.predio > * {
    position: relative;
    z-index: 2;
}
.predio-tit{
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -3px;
}
.predio-ubi{
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 8px;
}
.mapa-predio {
    position: relative;
    width: 70%;
    box-shadow: 0px 20px 30px #162141ff;
    margin-top: -150px!important;
    height: 600px;
    margin: 0 auto;
    border-radius: 30px;
    z-index: 3;
    overflow: hidden; /* importante para que el iframe respete el border radius */
}

/* El mapa ocupa todo el div */
.mapa-predio iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.mapa-predio:hover {
    box-shadow: 5px 20px 30px rgb(27, 41, 85);
}
.mapa-predio:hover .mapa-overlay  {
    opacity: 0;
}
/* Overlay encima del mapa */
.mapa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(18, 46, 133);
    opacity: 0.1;
    z-index: 2;
    pointer-events: none; /* permite interactuar con el mapa */
}
.location-pin{
    height: 120px;
}
@media (max-width: 968px) {
    .predio-tit{
    font-size: 3rem;
    letter-spacing: -1px;
    line-height: 100%;
}
    .predio-ubi{
        font-size: 1.3rem;
        letter-spacing: 5px;
    }
    .location-pin{
        height: 100px;
    }
    .mapa-predio {
        width: 80%;
        height: 300px;
    }
    .descripcion{
    font-size: 1rem;
    line-height: normal;
}
}

@media (max-width: 768px) {
.predio-tit{
    font-size: 2.3rem;
    letter-spacing: 0px;
}
    .predio-ubi{
        font-size: 1rem;
        letter-spacing: 5px;
    }   
    .location-pin{
        height: 70px;
    }
}

/*=================================
************LED 
=================================*/

.franja-led {
    width: 100%;
    overflow: hidden;
    background: #162141ff;
    padding: 10px 0;
    /* border-top: 1px solid white;
    border-bottom: 1px solid white; */
}

/* El truco: el contenedor es flex y cada span NO tiene padding lateral */
.franja-led-inner {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation: moverLed 12s linear infinite;
}

.franja-led-inner span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: white;
    /* color: #23c0e9; */
}

/* Animación perfecta: mueve TODO el ancho del bloque duplicado */
@keyframes moverLed {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


/*=================================
tarjetas
=================================*/

.clasicos {
    width: 100%;
    min-height: 100vh;

    background-image: url('/static/images/bg-clasicos2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.clasicos-title{
    text-align: start;
    width: 75%;
    margin-bottom: 30px;
}

/* .clasicos-title{
    text-align: start;
    width: 100%;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 30px;
} */

.tarjeta-c {
    position: relative;
    width: 300px;              /* Ajustable */
    height: 420px;             /* Ajustable */
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.836);
}

.tarjeta-c:hover {
    transform: translateY(-10px);
}

.tarjeta-c:hover  .tarjeta-c-overlay{
    background: linear-gradient(
        to bottom,
        rgba(10, 26, 55, 0) 20%,
        rgba(10, 26, 55, 0.2) 45%,
        rgba(10, 26, 55, 0.4) 70%,
        rgba(10, 26, 55, 1) 100%
    );
}
/* Overlay gradiente como la segunda captura */
.tarjeta-c-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to bottom,
        rgba(10, 26, 55, 0) 20%,
        rgba(10, 26, 55, 0.4) 45%,
        rgba(10, 26, 55, 0.7) 70%,
        rgba(10, 26, 55, 1) 100%
    );

    z-index: 1;
}

/* Contenido */
.tarjeta-c-content {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    padding: 0 15px;
    z-index: 2;
}

.tarjeta-c-fecha {
    font-size: 0.9rem;
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
}

.tarjeta-c-titulo {
    font-weight: 600;
    font-size: 1rem;
    color: white;
    line-height: 1.3rem;
}
.linea-T {
    display: block;          /* clave */
    width: 60px;
    height: 3px;
    background: #23c0e9;
    margin: 6px auto 12px auto;  /* centrado y separación */
}
.tc1{
    background-image: url('/static/images/embaladores2.png');
}
.tc2{
    background-image: url('/static/images/productivos2.png');
}
.tc3{
    background-image: url('/static/images/peso2.png');
}
.tc4{
    background-image: url('/static/images/circuito2.png');
}

/*============================
************form**************
============================*/
.fondo-registro{
    width: 100%;
    background-image: url('/static/images/fondo-trama2.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#userForm{
    background: linear-gradient(45deg, rgba(18, 24, 44, 1) 0%, rgba(22, 21, 27, 1) 52%, rgba(20, 22, 35, 1) 75%, rgba(18, 24, 44, 1) 99%);
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.836) !important;
}
input {
    background-color: #313131ff;  
    /* background-color: #0d122b; */
    color: #ffffff;  
    border: 1px solid #0d122b;         
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

input:hover {
    border: 1px solid #23c0e9!important;
}

/* Placeholder */
input::placeholder {
    color: #bbbbbb;             /* Color del placeholder */
    opacity: 1;                 /* Evita que el navegador lo haga más transparente */
}
input:focus {
    border: 1px solid #00b3ff8e!important;
    color: #ffffff;
    box-shadow: 0 0px 5px #00b4ff !important;
}
/* Chrome — quita el focus ring interno */
input:focus-visible {
    outline: none;
}

/* Contenedor form-floating */
.form-floating {
    position: relative;
}

/* Input base */
.form-floating .form-control {
    border-radius: 5px!important;
    /* border: 2px solid #1a1e41; */
    border: 2px solid #313131ff;
    background: #0d122b;
    color: white;
    padding-left: 15px;
    height: 60px;
    font-size: 1rem;
    font-weight: 500;
}

/* Placeholder flotante */
.form-floating label {
    color: #7a86a0;
    font-weight: 500;
}

/* Foco */
.form-floating .form-control:focus {
    border-color: #23c0e9;
    box-shadow: 0 0 0 0.1rem rgba(35, 192, 233, 0.25);
    background: #0f1533;
    color: white;
}

/* Label cuando flota */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #23c0e9;
    font-size: 0.85rem;
}

/* Bordes con hover */
.form-floating .form-control:hover {
    border-color: #23c0e9;
}

/* Estilo de errores */
.form-floating .form-control.is-invalid,
.form-floating .form-control.is-invalid:focus {
    border-color: #ff4f4f;
    box-shadow: none;
}

.text-danger {
    font-size: 0.85rem;
    margin-top: 4px;
}


.form-floating .form-control,
.form-floating input[type="date"],
.form-floating input[type="datetime-local"],
.form-floating input[type="number"] {
    /* background-color: #0d122b !important; */
    background-color: #313131ff;
    color: white;
}
.form-floating > label {
    background-color: transparent !important;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    background: transparent !important;
    color: #23c0e9;
}
.form-floating {
    --bs-body-bg: transparent !important;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(62%) sepia(95%) saturate(300%) hue-rotate(160deg) brightness(95%) contrast(90%);
    width: 22px;
    height: 22px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    background-color: #0d122b !important;
    -webkit-text-fill-color: white !important;
    box-shadow: 0 0 0 1000px #0d122b inset !important;
    border-color: #23c0e9 !important;
    transition: background-color 0s, color 0s;
}



/*
==================================
==============cards entradas 
==================================*/


.venta {
    position: relative;
    text-align: center;
    width: 100%;
    min-height: 50vh;
    color: white;
    background-image: url('/static/images/bg1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    place-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Overlay radial encima del fondo */
.venta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: radial-gradient(
        circle,
        rgba(26, 30, 65, 0.5) 0%,
        #11132aff 90%
    );

    z-index: 1;
}

/* Para que tu contenido esté por encima */
.venta > * {
    position: relative;
    z-index: 2;
}
.fnmt{
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: -3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.678);
}
.fnmst{
    font-size: 3rem;
    font-weight: 600;
    color: #23c0e9;
    letter-spacing: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.678);
    margin-top: -20px;
}



/* @media (min-width: 992px) { 
  .col-lg-8  .card-evento {
    min-width: 700px !important;
    background-color: red !important; 
  }
} */

.card-evento {
    width: 100%;
    padding: 25px;
    display: flex;
    flex-direction: row;
    z-index: 1;
    margin-bottom: 1.7rem;
    background: linear-gradient(45deg, rgba(18, 24, 44, 1) 0%, 
                                        rgba(22, 21, 27, 1) 52%, 
                                        rgba(20, 22, 35, 1) 75%, 
                                        rgba(18, 24, 44, 1) 99%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.836);
}

.card-evento-img {
    position: relative;
    width: 45%;
    max-height: 400px;
    overflow: hidden;
}


/* Barra con gradiente (desktop: vertical, a la derecha) */
/* .card-evento-img::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 40px;

    width: 8px;      
    height: 30%;     

    background: linear-gradient(90deg, #23c0e9, #0164c0);
    z-index: 3;
} */



.card-evento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #162141ff;
    opacity: 0.45;
    z-index: 2;
}
.dia-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 5;    
    background: linear-gradient(90deg, #23c0e9, #0164c0);
    color: white;
    padding: 2px 7px;
    display: flex;
    flex-direction: column;
    align-items: center;

    font-family: 'Montserrat', sans-serif;
}

.dia-num {
    font-size: 3rem;
    line-height: 100%;
    font-weight: 800;
}

.dia-texto {
    font-size: 0.9rem;
    font-weight: 700;
}
.card-evento-info {
    width: 55%;
    display: flex;
    flex-direction: column;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.evento-titulo {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.evento-precios {
    color: #23c0e9;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
}
.evento-detalle {
    margin-bottom: 30px;
}

.detalle-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.detalle-icon {
    font-size: 1.7rem;
    margin-right: 10px;
}
.entrada-controles {
    display: flex;
    gap: 50px;
}

.control label {
    display: block;
    text-align: center;
    font-weight: 700;
    margin-bottom: 8px;
}

.control-box {
    display: flex;
    align-items: center;
    gap: 12px;
    /* background: #0d122b; */
    padding: 8px 16px;
    border-radius: 12px;
}

.control-box div {
    background: transparent;
    border: 1px solid #23c0e9;
    place-content: center;
    display: flex;
    color: white;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
}
.control-box div:hover {
    background-color: #23c1e93d;
    transform: scale(0.95);
}

.control-box span {
    font-size: 2rem;
    font-weight: 600;
}
@media (max-width: 900px) {
    .card-evento {
        flex-direction: column;
    }

    .card-evento-img,
    .card-evento-info {
        width: 100%;
    }

    .card-evento-img {
        min-height: 350px;
    }

    .entrada-controles {
        justify-content: space-around;
    }
}



.pre-resumen{
    background: linear-gradient(45deg, rgb(18, 24, 44) 0%, 
                                        rgba(22, 21, 27, 1) 52%, 
                                        rgba(20, 22, 35, 1) 75%, 
                                        rgba(18, 24, 44, 1) 99%);
    height: fit-content;
    position: sticky;
    top: 20px;
    color: white;
    border-radius: 20px;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.836);
}


.pre-resumen {
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.pre-resumen-inner {
    background: rgba(13, 16, 30, 0.7);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.resumen-titulo {
    font-weight: 800;
    font-size: 1.4rem;
}

.resumen-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.resumen-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 16px;
}

@media (min-width: 992px) and (max-width: 1543px){
    .resumen-item{
        flex-direction: column!important;
        align-items: flex-start;
    }
    .item-der{
        display: flex;
        width: 100%!important;
        justify-content: end!important;
    }
    .item-izq{
        display: flex;
        width: 100%!important;
        flex-direction: column!important;
    }
}


.item-izq .dia {
    font-weight: 700;
    font-size: 1rem;
}

.item-izq .detalles {
    font-size: 0.9rem;
    opacity: 0.8;
}

.subtotal {
    font-weight: 700;
    color: #23c0e9;
}

.resumen-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.resumen-total .valor {
    color: #23c0e9;
}

.toggle-tipo{
    color: white!important;
    background-color: transparent;
    border: 1px solid white;
    font-weight: 900;
}
.toggle-tipo.full.active{
    color: white!important;
    background-color: rgb(77, 41, 148)!important;
}
.toggle-tipo.full:hover{
    background-color: rgba(77, 41, 148, 0.397)!important;
}

.toggle-tipo.plus.active{
    color: white!important;
    background-color: #9c539aff;
}
.toggle-tipo.plus:hover{
    background-color: rgba(156, 83, 154, 0.696);
}





.btn-comprar {
    background: linear-gradient(90deg, #23c0e9, #0046b8, #23c0e9);
    background-size: 300% 300%;
    border: none;
    padding: 14px 0;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    animation: moverOndas 4s ease infinite;
}

/* Animación del gradiente */
@keyframes moverOndas {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.btn-comprar:hover {
    filter: brightness(1.15);
}

.beneficio-rn-badge{
    background: linear-gradient(0deg, #de0303ff, #a20303ff);
    padding: 1px 20px;
    position: absolute;
    border-radius: 0 30px 30px 0;
    z-index: 5;
    bottom: 100px;
    left: 0;
    font-size: 40px;
    color: white;
    font-weight: 900;
    box-shadow: 0 10px 5px rgb(17, 17, 17);
} 
.card-evento.beneficio-rn {
    box-shadow: 0 0 150px 1px rgba(255, 0, 0, 0.48);
    animation: flamePulse 2.2s infinite ease-in-out;
    z-index: 0;
} 

@media (max-width: 900px) {
    .beneficio-rn-badge{  
        bottom: 55%;
    }
}
@media (max-width: 600px) {
    .beneficio-rn-badge{  
        bottom: 60%;
    }
}



@media (max-width: 1400px) {
    .card-evento{        
        padding: 20px;
    }
    .evento-titulo {
        font-size: 17px;
    }
    .evento-precios{
        font-size: 17px;
    }
    .detalle-icon{
        font-size: 17px;
    }
    .detalle-texto{
        font-size: 15px;
    }
    .entrada-controles {
    gap: 20px;
    }

    .control label {
        display: block;
        text-align: center;
        font-weight: 700;
        margin-bottom: 0px;
    }
    .card-evento-info{
        padding: 3px!important;
    }
    .beneficio-rn-badge{
    padding: 10px;
    font-size: 17px;
} 
}


@media (max-width: 992px) {
    .card-evento-info{
        padding: 20px!important;
    }
}


@media (max-width: 900px) {
    .card-evento{        
        padding: 25px;
    }
    .evento-titulo {
        font-size:  25px;
    }
    .evento-precios{
        font-size:  20px;
    }
    .detalle-icon{
        font-size: 25px;
    }
    .detalle-texto{
        font-size:  20px;
    }
    .entrada-controles {
    gap: 20px;
    }
    .evento-detalle {
    margin-bottom: 10px;
}

    .control label {
        display: block;
        text-align: center;
        font-weight: 700;
        margin-bottom: 0px;
    }
    .card-evento-info{
        padding: 20px!important;
    }
    .beneficio-rn-badge{
    padding: 10px;
    font-size: 17px;
} 
}



/* Keyframes estilo llama */
@keyframes flamePulse {
    0% {
        box-shadow: 0 0 110px 1px rgba(222, 3, 3, 0.411);
    }
    25% {
        box-shadow: 0 0 50px 4px rgba(255, 0, 0, 0.48);
    }
    50% {
        box-shadow: 0 0 70px 2px rgba(255, 0, 0, 0.479);
    }
    75% {
        box-shadow: 0 0 150px 3px rgba(255, 0, 0, 0.192);
    }
    100% {
        box-shadow: 0 0 60px 1px rgba(222, 3, 3, 0.438);
    }
}

/* 
.beneficio-buenco{
    background: linear-gradient(0deg, #00639fff, #002742ff);
    padding: 10px 20px;
    position: absolute;
    border-radius: 0 30px 30px 0;
    z-index: 5;
    bottom: 100px;
    left: 0;
    letter-spacing: -2px;
    font-size: 30px;
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 5px rgb(17, 17, 17);
} */
/* .card-evento.beneficio-roca {
    box-shadow: 0 0 150px 1px #00639fff;
    animation: flamePuls 2.2s infinite ease-in-out;
    z-index: 0;
} */

/* Keyframes estilo llama */
@keyframes flamePuls {
    0% {
        box-shadow: 0 0 110px 1px rgba(0, 98, 159, 0.589);
    }
    25% {
        box-shadow: 0 0 130px 4px rgba(0, 98, 159, 0.644);
    }
    50% {
        box-shadow: 0 0 180px 2px rgba(0, 98, 159, 0.452);
    }
    75% {
        box-shadow: 0 0 100px 3px rgba(0, 98, 159, 0.664);
    }
    100% {
        box-shadow: 0 0 130px 1px rgba(0, 98, 159, 0.521);
    }
}



/*
==================================
==============cards entradas 
==================================*/

/*========================
==============Resumen======
===================*/
.resumen-comp{    
    background: linear-gradient(45deg, rgba(18, 24, 44, 1) 0%, 
                                        rgba(22, 21, 27, 1) 52%, 
                                        rgba(20, 22, 35, 1) 75%, 
                                        rgba(18, 24, 44, 1) 99%);
    border-radius: 30px 30px 30px 30px;
    overflow: hidden;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.836);
}

.img-res-cont {
    position: relative;
}

.logo-in-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    z-index: 10; 
}
.resumen-comp{   
    color: white;
}
.listado-resumen .col{
    display: flex;
    justify-content: center;
    align-items: center;
}
 .listado-resumen{
    /* background: #23c1e910; */

    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
} 
.linea-hr{    
    height: 1px;
    background-color: white;
    width: 100%;
    border-radius: 50px;
}
.badge-resumen{
    font-size: 12px!important;
    position: absolute!important;    
    margin-left: 32px!important;
    margin-top: -50px!important;  
}
.boni-pre{
    display: none!important;
}
@media (max-width: 768px) {
    .resumen-comp-body{
        font-size: 13px;
    }
    .entrada-mini{
        width: 50px!important;
    }
    .badge-resumen{
        font-size: 8px!important;
        margin-top: 0px!important;
        margin-left: -30px!important;  
    }
    .resumen-comp-body .btn{
        font-size: 13px;
    }
    .boni-pre{
        display:inline!important;
    }
    .pr-ocu{
        display: none!important;
    }
    .boni-ocu{
        display: none!important;
    }
}

#carrito-flotante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0af, #06f);
    border-radius: 50%;
    opacity: 0;              /* Inicialmente invisible */
    pointer-events: none;    /* No clickeable mientras está oculto */
    transform: scale(0.5);   /* Más chico al inicio */
    justify-content: center;
    align-items: center;
    display: flex;
    box-shadow: 0 8px 20px rgb(0, 0, 0);
    cursor: pointer;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
    animation: none;
}
.shake-now {
    animation: shake 0.4s ease!important;
}


#carrito-flotante.mostrar {
    opacity: 1;
    pointer-events: auto; /* ahora sí clickeable */
    transform: scale(1);  /* crece suavemente */
    display: flex;
}

#carrito-flotante i {
    font-size: 30px;
    color: white;
}

#carrito-flotante:hover {
    transform: scale(1.1);
}
@keyframes shake {
    0% { transform: scale(1) translateX(0); }
    25% { transform: scale(1.05) translateX(-4px); }
    50% { transform: scale(1.05) translateX(4px); }
    75% { transform: scale(1.05) translateX(-4px); }
    100% { transform: scale(1) translateX(0); }
}
#carrito-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3366;
    color: white;
    font-size: 15px;
    padding: 3px 8px;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/*Animaciones*/

.hero-inner {
    opacity: 0;
    animation: heroFadeIn 1.2s ease-in forwards;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px); /* sutil deslizamiento hacia arriba */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-ml-h{
    border-radius: 7px!important;
}
.btn-out2 {
    position: relative;
    padding: 12px 40px;
    margin-bottom: 4px;
    border: none;
    border-radius: 7px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background: #0000; /* transparente */
    z-index: 1;
}

.btn-out2::before {
    content: "";
    position: absolute;
    inset: 0;
    border: none;
    padding: 2px; /* grosor del borde */
    border-radius: 7px;
    background: linear-gradient(90deg, #23c0e9, #0046b8);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    z-index: -1;
}

.btn-out2:hover {
    background: linear-gradient(90deg, #23c0e9, #0046b8);
    color: white;
    border-radius: 7px;
    border: none;
    transform: translateY(-3px);
}
#walletBrick_container{
    transition: all 0.3s;
}
#walletBrick_container:hover{
    transform: translateY(-3px);
}