:root {
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    cursor: url('../assets/img/spoon.png') 16 0, auto;
}

.hero-slider {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    transition: height 0.6s ease;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    z-index: 1;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-content {
    position: relative;
    z-index: 1;
    padding-top: 7rem;
    padding-bottom: 4.5rem;
}

@media (min-width: 768px) {
    .hero-slide-content {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
}

.hero-slide--gala {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.hero-gala-poster {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    padding-top: 97px;
    background-color: #181512;
}

.hero-gala-poster-img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-gala-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
            transparent 40%,
            rgba(255, 255, 255, 0.16) 50%,
            transparent 60%);
    transform: translateX(-100%);
    animation: heroGalaShine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGalaShine {

    0%,
    45% {
        transform: translateX(-100%);
    }

    65%,
    100% {
        transform: translateX(100%);
    }
}

.hero-slide-content--gala {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background-color: #181512;
    border-top: 3px solid #E31E24;
}

.dark .hero-slide-content--gala {
    border-top-color: #FFD700;
}

@media (min-width: 768px) {
    .hero-slide-content--gala {
        flex-direction: row;
        gap: 2rem;
        padding: 1.75rem 2rem;
    }
}

.hero-gala-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.65);
}

.hero-gala-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.hero-gala-sep {
    opacity: 0.4;
}

.hero-gala-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background-color: #E31E24;
    color: #ffffff;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.3);
    transition: transform 0.3s var(--ease-spring), gap 0.3s ease, box-shadow 0.3s ease;
}

.hero-gala-btn:hover {
    transform: scale(1.05);
    gap: 0.8rem;
    box-shadow: 0 12px 32px rgba(227, 30, 36, 0.4);
}

@media (min-width: 768px) {
    .hero-gala-btn {
        gap: 0.6rem;
        padding: 1rem 2.5rem;
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .hero-gala-btn:hover {
        gap: 0.9rem;
    }
}

.dark .hero-gala-btn {
    background-color: #FFD700;
    color: #1D2338;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25);
}

.dark .hero-gala-btn:hover {
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.35);
}

.hero-arrow {
    position: absolute;
    bottom: 1.75rem;
    z-index: 5;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    transition: background 0.3s ease, transform 0.3s var(--ease-spring);
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.32);
    transform: scale(1.08);
}

.hero-arrow--prev {
    left: 1rem;
}

.hero-arrow--next {
    right: 1rem;
}

@media (max-width: 767px) {
    .hero-slider:has(.hero-slide--gala.is-active) .hero-arrow {
        bottom: 6rem;
    }
}

@media (min-width: 768px) {
    .hero-arrow {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        width: 52px;
        height: 52px;
    }

    .hero-arrow:hover {
        transform: translateY(-50%) scale(1.08);
    }

    .hero-arrow--prev {
        left: 2rem;
    }

    .hero-arrow--next {
        right: 2rem;
    }
}

.hero-dots {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.85rem;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-slider:has(.hero-slide--gala.is-active) .hero-dots {
    bottom: 14.5rem;
}

@media (min-width: 768px) {
    .hero-slider:has(.hero-slide--gala.is-active) .hero-dots {
        bottom: 8.5rem;
    }
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s var(--ease-spring), background-color 0.3s ease;
}

.hero-dot.is-active {
    background: #E31E24;
    transform: scale(1.35);
}

.dark .hero-dot.is-active {
    background: #FFD700;
}

.honeypot {
    position: absolute;
    opacity: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.ticket-img-wrapper--dual {
    gap: 0.5rem;
}
.ticket-img-wrapper--dual .ticket-img--logo {
    width: 50%;
}

.proyecto-wrapper {
    position: relative;
    border-radius: 24px;
    will-change: transform;
}

.proyecto-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    clip-path: inset(0 100% 0 0 round 24px);
    transition: box-shadow 0.4s ease;
}

.dark .proyecto-img {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.proyecto-wrapper.aos-animate .proyecto-img {
    animation: clipReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.3s forwards;
}

@keyframes clipReveal {
    from {
        clip-path: inset(0 100% 0 0 round 24px);
    }

    to {
        clip-path: inset(0 0% 0 0 round 24px);
    }
}

.proyecto-accent {
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #E31E24;
    border-radius: 0 0 4px 4px;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), background-color 0.5s ease;
    z-index: 2;
}

.dark .proyecto-accent {
    background-color: #FFD700;
}

.proyecto-accent.aos-animate {
    transform: scaleX(1);
}

.glass-card {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 3rem;
    border-width: 1px;
    border-style: solid;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        border-color 0.4s ease,
        background-color 0.4s ease,
        box-shadow 0.4s ease;
}

html:not(.dark) .glass-card {
    background-color: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.05);
}

.glass-card:hover {
    transform: translateY(-12px) scale(1.03);
    z-index: 10;
}

.dark .glass-card:hover {
    border-color: #FFD700;
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

html:not(.dark) .glass-card:hover {
    border-color: #E31E24;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.logo-bento {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.glass-card:hover .logo-bento {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

.logo-footer {
    height: 65px;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.logo-footer--lg {
    height: 88px;
    max-width: 200px;
}

.logo-footer:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-3px);
}

@media (min-width: 1536px) {
    .logo-footer {
        height: 60px;
        max-width: 150px;
    }

    .logo-footer--lg {
        height: 82px;
        max-width: 190px;
    }
}


.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    opacity: 0.5;
    color: inherit;
}

.social-icon svg,
.social-icon i {
    width: 22px;
    height: 22px;
    font-size: 22px;
    line-height: 1;
    stroke: currentColor;
    fill: none;
    color: inherit;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-5px);
    color: #E31E24;
}

.dark .social-icon:hover {
    color: #FFD700;
}

.social-icon:active {
    transform: scale(0.9);
}


.menu-icon-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon-wrapper svg,
.menu-icon-wrapper i {
    position: absolute;
    width: 24px;
    height: 24px;
    transition: opacity 0.2s ease, transform 0.3s var(--ease-spring);
}

.menu-icon-visible {
    opacity: 1 !important;
    transform: rotate(0deg) scale(1) !important;
    pointer-events: auto;
}

.menu-icon-hidden {
    opacity: 0 !important;
    transform: rotate(90deg) scale(0.6) !important;
    pointer-events: none;
}

#icon-menu {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

#icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.6);
}


#menu-toggle {
    z-index: 70;
    position: relative;
}

#mobile-menu {
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.dark #mobile-menu {
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.6);
}

#mobile-menu .social-icon {
    color: #1D2338;
}

.dark #mobile-menu .social-icon {
    color: #ffffff;
}

footer .social-icon {
    color: #1D2338;
}

.dark footer .social-icon {
    color: #ffffff;
}


.glass-card-video {
    display: flex;
    flex-direction: column;
    border-width: 1px;
    border-style: solid;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        border-color 0.4s ease,
        background-color 0.4s ease,
        box-shadow 0.4s ease;
}

html:not(.dark) .glass-card-video {
    background-color: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.05);
}

.glass-card-video:hover {
    transform: translateY(-12px);
}

.dark .glass-card-video:hover {
    border-color: #FFD700;
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

html:not(.dark) .glass-card-video:hover {
    border-color: #E31E24;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.video-thumbnail-container {
    position: relative;
    aspect-ratio: 16 / 9;
}

.video-thumbnail {
    transition: transform 0.5s ease;
}

.glass-card-video:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-overlay {
    transition: opacity 0.3s ease;
}

.video-play-icon {
    transition: transform 0.3s var(--ease-spring);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 1536px) {
    .video-play-icon {
        width: 4.5rem;
        height: 4.5rem;
    }
}

@media (max-width: 767px) {
    #hablando-murcia .grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .glass-card-video {
        min-height: 320px;
        width: 100%;
    }

    .glass-card-video:has(.video-thumbnail-container) {
        min-height: auto;
    }
}


body {
    overflow-x: hidden;
}


.contact-card {
    padding: 2.5rem;
    border-width: 1px;
    border-style: solid;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

html:not(.dark) .contact-card {
    background-color: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.form-group:focus-within .form-label {
    opacity: 1;
}

.dark .form-group:focus-within .form-label {
    color: #FFD700;
}

html:not(.dark) .form-group:focus-within .form-label {
    color: #E31E24;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    outline: none;
    transition: border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

html:not(.dark) .form-input {
    background-color: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
    color: #1D2338;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
}

html:not(.dark) .form-input::placeholder {
    color: rgba(29, 35, 56, 0.3);
}

.dark .form-input:focus {
    border-color: #FFD700;
    background-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.08);
}

html:not(.dark) .form-input:focus {
    border-color: #E31E24;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.07);
}

.form-input.input-error {
    border-color: #E31E24 !important;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1) !important;
}

.form-textarea {
    resize: vertical;
    min-height: 130px;
}

.form-error {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #E31E24;
    min-height: 1rem;
    transition: opacity 0.3s ease;
}

.form-feedback {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
    transition: opacity 0.4s ease;
}

.form-feedback.success {
    background-color: rgba(45, 90, 39, 0.15);
    border-color: rgba(45, 90, 39, 0.3);
    color: #2D5A27;
}

.dark .form-feedback.success {
    background-color: rgba(45, 90, 39, 0.2);
    border-color: rgba(45, 90, 39, 0.4);
    color: #6fcf6a;
}

.form-feedback.error {
    background-color: rgba(227, 30, 36, 0.08);
    border-color: rgba(227, 30, 36, 0.2);
    color: #E31E24;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
    flex-shrink: 0;
}


.evento-card {
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    border-radius: 24px;
    border-color: rgba(255, 255, 255, 0.12);
    min-height: 320px;
    cursor: pointer;
    transition: border-color 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html:not(.dark) .evento-card {
    border-color: rgba(0, 0, 0, 0.08);
}

.evento-card--featured {
    min-height: 420px;
}

@media (min-width: 768px) {
    .evento-card--featured {
        min-height: 500px;
    }

    .evento-card {
        min-height: 380px;
    }
}

.evento-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a1a2e;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.evento-card:hover .evento-bg {
    transform: scale(1.05);
}

.evento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.2) 100%);
    transition: background 0.4s ease;
}

.evento-card:hover .evento-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0.35) 100%);
}

.evento-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 2;
}

.evento-card--featured .evento-content {
    padding: 2.5rem;
}

.evento-content-top {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.evento-card:hover .evento-content-top {
    transform: translateY(-4px);
}


.evento-content-reveal {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.4s ease 0.1s;
}

.evento-card:hover .evento-content-reveal {
    max-height: 200px;
    opacity: 1;
}

.evento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.evento-accent-line {
    width: 2.5rem;
    height: 3px;
    background-color: #E31E24;
    border-radius: 2px;
    margin-bottom: 1rem;
    margin-top: 0.75rem;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.dark .evento-accent-line {
    background-color: #FFD700;
}

.evento-card:hover .evento-accent-line {
    transform: scaleX(1);
}

.evento-icon {
    width: 1.6rem;
    height: 1.6rem;
    color: #ffffff;
    flex-shrink: 0;
}

@keyframes iconBounce {
    0% {
        transform: translateY(0) scale(1);
    }

    30% {
        transform: translateY(-5px) scale(1.15);
    }

    55% {
        transform: translateY(2px) scale(0.95);
    }

    75% {
        transform: translateY(-3px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    40% {
        transform: rotate(20deg) scale(1.15);
    }

    70% {
        transform: rotate(-8deg) scale(1.05);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes iconPop {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.evento-card--featured:hover .evento-icon {
    animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.grid .evento-card:first-child:hover .evento-icon {
    animation: iconSpin 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.grid .evento-card:last-child:hover .evento-icon {
    animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}


@media (max-width: 767px) {
    .evento-card:hover {
        transform: none;
        box-shadow: none;
    }

    .evento-content-reveal {
        max-height: 300px;
        opacity: 1;
    }

    .evento-accent-line {
        transform: scaleX(1);
    }

    .evento-card:hover .evento-bg {
        transform: none;
    }
}


.ciclos-texto-body {
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid #E31E24;
    transition: border-color 0.5s ease;
}

.dark .ciclos-texto-body {
    border-left-color: #FFD700;
}

.ticket {
    position: relative;
    display: flex;
    align-items: stretch;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

html:not(.dark) .ticket {
    background-color: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.07);
}

.ticket:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(227, 30, 36, 0.3);
}

.dark .ticket:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.3);
}

.ticket-body {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    padding: 1.5rem 1.75rem;
}

.ticket-ciclo {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: #E31E24;
    opacity: 0.18;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    transition: opacity 0.3s ease, color 0.3s ease;
    min-width: 3rem;
    text-align: center;
}

.dark .ticket-ciclo {
    color: #FFD700;
    opacity: 0.2;
}

.ticket:hover .ticket-ciclo {
    opacity: 0.5;
}

.ticket-info {
    flex: 1;
}

.ticket-fecha {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.45;
}

.ticket-titulo {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-top: 0.3rem;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .ticket-titulo {
        font-size: 1.1rem;
    }
}

.ticket-meta-icon {
    width: 0.75rem;
    height: 0.75rem;
    opacity: 0.4;
    flex-shrink: 0;
}

.ticket-divider {
    width: 1px;
    background-image: repeating-linear-gradient(to bottom,
            #E31E24 0px,
            #E31E24 6px,
            transparent 6px,
            transparent 12px);
    opacity: 0.3;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.dark .ticket-divider {
    background-image: repeating-linear-gradient(to bottom,
            #FFD700 0px,
            #FFD700 6px,
            transparent 6px,
            transparent 12px);
}

.ticket:hover .ticket-divider {
    opacity: 0.6;
}

.ticket-notch {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border-radius: 50%;
    right: calc(var(--ticket-stub-width) - 8px);
    z-index: 2;
    transition: background-color 0.5s ease;
}

.dark .ticket-notch {
    background-color: #1D2338;
}

.ticket-notch--top {
    top: -8px;
}

.ticket-notch--bottom {
    bottom: -8px;
}

.ticket-stub {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    background-color: rgba(227, 30, 36, 0.04);
    flex-shrink: 0;
    min-width: 180px;
    transition: background-color 0.3s ease;
}

.dark .ticket-stub {
    background-color: rgba(255, 215, 0, 0.04);
}

.ticket:hover .ticket-stub {
    background-color: rgba(227, 30, 36, 0.07);
}

.dark .ticket:hover .ticket-stub {
    background-color: rgba(255, 215, 0, 0.15);
}

.ticket-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background-color: #E31E24;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 9999px;
    text-decoration: none;
    transition: transform 0.3s var(--ease-spring),
        box-shadow 0.3s ease,
        background-color 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.25);
}

.dark .ticket-btn {
    background-color: #FFD700;
    color: #1D2338;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.ticket-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.35);
}

.dark .ticket-btn:hover {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.ticket-btn--agotado {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: rgb(156 163 175);
    color: #ffffff;
    box-shadow: none;
}
.dark .ticket-btn--agotado {
    background-color: rgb(107 114 128);
}
.ticket-btn--agotado:hover,
.dark .ticket-btn--agotado:hover {
    transform: none;
    box-shadow: none;
}

@media (max-width: 639px) {
    .ticket {
        flex-direction: column;
    }

    .ticket-body {
        padding: 1.25rem;
    }

    .ticket-divider {
        width: 100%;
        height: 1px;
        background-image: repeating-linear-gradient(to right,
                #E31E24 0px,
                #E31E24 6px,
                transparent 6px,
                transparent 12px);
    }

    .dark .ticket-divider {
        background-image: repeating-linear-gradient(to right,
                #FFD700 0px,
                #FFD700 6px,
                transparent 6px,
                transparent 12px);
    }

    .ticket-notch--top {
        top: auto;
        bottom: calc(var(--ticket-stub-height) - 8px);
        right: -8px;
    }

    .ticket-notch--bottom {
        bottom: calc(var(--ticket-stub-height) - 8px);
        left: -8px;
        right: auto;
    }

    .ticket-stub {
        min-width: unset;
        width: 100%;
        padding: 1rem 1.25rem;
    }

    .ticket-ciclo {
        font-size: 2rem;
    }

}


.ticket-stub--con-imagen {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
    min-width: 210px;
}

.ticket-img-wrapper--logo {
    width: 160px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ticket:hover .ticket-img-wrapper--logo {
    transform: scale(1.04);
}

.ticket-img--logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ticket-img-wrapper--art {
    width: 160px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ticket:hover .ticket-img-wrapper--art {
    transform: scale(1.04);
}

.ticket-img--art {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

@media (max-width: 639px) {
    .ticket-stub--con-imagen {
        min-width: unset;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .ticket-img-wrapper--logo,
    .ticket-img-wrapper--art {
        width: 160px;
        height: 100px;
        flex-shrink: 0;
    }
}


.ticket-estrellas {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.ticket-estrella {
    width: 1.3rem;
    height: 1.3rem;
    color: currentColor;
    opacity: 0.2;
    transition: opacity 0.2s ease,
        color 0.2s ease,
        transform 0.3s var(--ease-spring);
    flex-shrink: 0;
}

.ticket-estrella:nth-child(2) { transition-delay: 0.08s; }
.ticket-estrella:nth-child(3) { transition-delay: 0.16s; }
.ticket-estrella:nth-child(4) { transition-delay: 0.24s; }
.ticket-estrella:nth-child(5) { transition-delay: 0.32s; }

@media (min-width: 640px) {
    .ticket:hover .ticket-estrella {
        opacity: 1;
        color: #E31E24;
        transform: scale(1.3) translateY(-2px);
    }

    .dark .ticket:hover .ticket-estrella {
        color: #FFD700;
    }
}

@media (max-width: 639px) {
    .ticket-estrella {
        opacity: 1;
        color: #E31E24;
    }

    .dark .ticket-estrella {
        color: #FFD700;
    }
}



.btn-volver-eventos {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    height: 48px;
    width: 48px;
    padding: 0 14px;
    border-radius: 9999px;
    background-color: #E31E24;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.35);
    transition: width 0.4s var(--ease-spring),
        gap 0.4s var(--ease-spring),
        box-shadow 0.3s ease,
        background-color 0.3s ease;
    white-space: nowrap;
}

.dark .btn-volver-eventos {
    background-color: #FFD700;
    color: #1D2338;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25);
}

@media (min-width: 640px) {
    .btn-volver-eventos:hover {
        width: 148px;
        gap: 0.5rem;
        box-shadow: 0 12px 32px rgba(227, 30, 36, 0.45);
    }

    .dark .btn-volver-eventos:hover {
        box-shadow: 0 12px 32px rgba(255, 215, 0, 0.35);
    }
}

.btn-volver-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    transition: transform 0.3s var(--ease-spring);
}

.btn-volver-eventos:hover .btn-volver-icon {
    transform: translateX(-2px);
}

.btn-volver-texto {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.25s ease 0.1s,
        max-width 0.4s var(--ease-spring);
    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 640px) {
    .btn-volver-eventos:hover .btn-volver-texto {
        opacity: 1;
        max-width: 100px;
    }
}

@media (max-width: 639px) {
    .btn-volver-eventos {
        width: 120px;
        height: 40px;
        gap: 0.5rem;
        padding: 0 18px;
        right: auto;
        left: 1.75rem;
    }

    .btn-volver-texto {
        opacity: 1;
        max-width: 100px;
        font-size: 0.6rem;

    }
}



.ilustracion-fondo {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ilust-grande {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 350px;
    opacity: 0.3;
}

.ilust-pequena {
    position: absolute;
    top: 5rem;
    left: -1rem;
    width: 200px;
    opacity: 0.3;
}

.ilust-grande,
.ilust-pequena,
.ilust-sup-der,
.ilust-inf-izq {
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.8s ease;
}

.ilust-grande.ilust-swapped {
    transform: translate(calc(-100vw + 300px), calc(-100vh + 350px + 7rem));
}

.ilust-pequena.ilust-swapped {
    transform: translate(calc(100vw - 250px), calc(100vh - 350px));
}

.dark .ilust-grande,
.dark .ilust-pequena {
    opacity: 0.3;
}

.ilust-sup-der {
    position: absolute;
    top: 5rem;
    right: -2rem;
    width: 200px;
    opacity: 0.3;

}

.dark .ilust-sup-der {
    opacity: 0.3;
}

.ilust-inf-izq {
    position: absolute;
    bottom: -2rem;
    left: -1rem;
    width: 350px;
    opacity: 0.3;

}

.dark .ilust-inf-izq {
    opacity: 0.3;
}

.ilust-sup-der.ilust-swapped {
    transform: translate(calc(-100vw + 300px), calc(100vh - 300px));
}

.ilust-inf-izq.ilust-swapped {
    transform: translate(calc(100vw - 250px), calc(-100vh + 350px + 7rem));
}

@media (max-width: 767px) {
    .ilust-grande {
        width: 130px;
    }

    .ilust-pequena {
        width: 75px;
    }

    .ilust-sup-der {
        width: 75px;
    }

    .ilust-inf-izq {
        width: 130px;
    }

    .ilust-grande,
    .ilust-pequena {
        transition: transform 0.1s linear;
    }

    .ilust-sup-der,
    .ilust-inf-izq {
        transition: transform 0.1s linear;
    }
}


.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #E31E24;
    color: #ffffff;
    padding: 0.6rem 0;
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.dark .ticker-wrapper {
    background-color: #FFD700;
    color: #1D2338;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
    animation: tickerScroll 20s linear infinite;
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.ticker-sep {
    font-size: 0.5rem;
    opacity: 0.6;
}

.ticker-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    stroke: currentColor;
}


.novedad-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        background-color 0.4s ease;
    min-height: 320px;
}

html:not(.dark) .novedad-card {
    background-color: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

.novedad-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.dark .novedad-card:hover {
    border-color: #FFD700;
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

html:not(.dark) .novedad-card:hover {
    border-color: #E31E24;
    box-shadow: 0 20px 40px rgba(227, 30, 36, 0.1);
    background-color: #ffffff;
}


.novedad-ilust {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 180px;
    opacity: 0.08;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.novedad-card:hover .novedad-ilust {
    opacity: 0.15;
    transform: scale(1.08) rotate(-3deg);
}

.novedad-ilust img {
    width: 100%;
    height: auto;
}

.novedad-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #E31E24;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    border-radius: 0 0 24px 24px;
}

.dark .novedad-accent-line {
    background-color: #FFD700;
}

.novedad-card:hover .novedad-accent-line {
    transform: scaleX(1);
}

.novedad-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.novedad-icon {
    width: 1.6rem;
    height: 1.6rem;
    color: #E31E24;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.dark .novedad-icon {
    color: #FFD700;
}

.novedad-card:hover .novedad-icon {
    animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.novedad-card:hover .novedad-icon--spin {
    animation: iconSpin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.novedad-card:hover .novedad-icon--pop {
    animation: iconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.novedad-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #E31E24;
    transition: color 0.3s ease;
}

.dark .novedad-label {
    color: #FFD700;
}

.novedad-titulo {
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.novedad-divider {
    width: 2rem;
    height: 2px;
    background-color: #E31E24;
    border-radius: 2px;
    margin-bottom: 0.75rem;
    transition: width 0.4s ease, background-color 0.5s ease;
}

.dark .novedad-divider {
    background-color: #FFD700;
}

.novedad-card:hover .novedad-divider {
    width: 3.5rem;
}

.novedad-fecha {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: auto;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.novedad-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    background-color: #E31E24;
    border-radius: 9999px;
    align-self: flex-start;
    transition: gap 0.3s ease,
        transform 0.3s var(--ease-spring),
        box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.25);
}

.dark .novedad-btn {
    background-color: #FFD700;
    color: #1D2338;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.novedad-card:hover .novedad-btn {
    gap: 0.7rem;
    transform: scale(1.05);
}


.episodio-row {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-width: 1px;
    border-style: solid;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.4s ease,
        background-color 0.4s ease,
        box-shadow 0.4s ease;
}

html:not(.dark) .episodio-row {
    background-color: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.05);
}

.dark .episodio-row:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

html:not(.dark) .episodio-row:hover {
    border-color: rgba(227, 30, 36, 0.25);
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.episodio-embed {
    flex-shrink: 0;
    width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.episodio-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0.25rem 0;
}

.episodio-titulo {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-top: 0.4rem;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .episodio-titulo {
        font-size: 1.2rem;
    }
}

.episodio-divider {
    width: 2rem;
    height: 2px;
    background-color: #E31E24;
    border-radius: 2px;
    margin-bottom: 0.75rem;
    transition: width 0.4s ease,
        background-color 0.5s ease;
}

.dark .episodio-divider {
    background-color: #FFD700;
}

.episodio-row:hover .episodio-divider {
    width: 3.5rem;
}

.episodio-desc {
    font-size: 0.8rem;
    line-height: 1.65;
    opacity: 0.55;
}

@media (max-width: 767px) {
    .episodio-row {
        flex-direction: column;
    }

    .episodio-embed {
        width: 100%;
    }
}

.reel-card {
    display: block;
    transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
    will-change: transform;
    max-width: 260px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .reel-card {
        max-width: none;
        margin: 0;
    }
}

.reel-card:hover {
    transform: translateY(-6px) scale(1.01);
}

.iphone-frame {
    position: relative;
    background: #1c1c1e;
    border-radius: 44px;
    padding: 10px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        inset 0 0 0 1px rgba(255,255,255,0.04),
        0 12px 32px rgba(0,0,0,0.35);
}

.iphone-side-left {
    position: absolute;
    left: -3px;
    top: 90px;
    width: 3px;
    height: 26px;
    background: #0d0d0f;
    border-radius: 2px 0 0 2px;
    box-shadow: 0 40px 0 #0d0d0f, 0 80px 0 #0d0d0f;
}

.iphone-side-right {
    position: absolute;
    right: -3px;
    top: 130px;
    width: 3px;
    height: 54px;
    background: #0d0d0f;
    border-radius: 0 2px 2px 0;
}

.iphone-screen {
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.iphone-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 35%);
    pointer-events: none;
    z-index: 6;
}

.iphone-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 20px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.reel-card-bg {
    position: relative;
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
    background-image: url('../assets/img/miniatura.jpg');
    background-size: cover;
    background-position: center;
    aspect-ratio: 4 / 5;
}

.story-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
}

.story-ring {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 2.5px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.story-ring-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1c1c1e;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1c1c1e;
}

.story-ring-inner i {
    color: #ffffff;
    font-size: 0.9rem;
}

.story-footer-text {
    flex: 1;
    min-width: 0;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.2rem;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.story-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E31E24;
    animation: storyPulse 1.6s ease-in-out infinite;
}

.dark .story-badge::before {
    background: #FFD700;
}

@keyframes storyPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.75); }
}

.story-footer-title {
    color: #ffffff;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.story-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: #E31E24;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.35);
    transition: transform 0.3s var(--ease-spring);
}

.dark .story-cta {
    background-color: #FFD700;
    color: #1D2338;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25);
}

.reel-card:hover .story-cta,
.reel-card:active .story-cta {
    transform: scale(1.1);
}


:root       { --alive-from: #E31E24; --alive-to: #ff6b35; }
.dark       { --alive-from: #FFD700; --alive-to: #ffe57f; }

.word-alive {
    color: var(--alive-from);
    animation: word-alive-pulse 4s ease-in-out infinite;
}

@keyframes word-alive-pulse {
    0%, 100% { color: var(--alive-from); opacity: 1; }
    50%       { color: var(--alive-to);   opacity: 0.75; }
}


.spotlight-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    background-color: rgba(0, 0, 0, 0.02);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dark .spotlight-card {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.07);
}

.spotlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        500px circle at var(--mx, 50%) var(--my, 50%),
        rgba(227, 30, 36, 0.12),
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.dark .spotlight-card::before {
    background: radial-gradient(
        500px circle at var(--mx, 50%) var(--my, 50%),
        rgba(255, 215, 0, 0.12),
        transparent 50%
    );
}

.spotlight-card:hover::before {
    opacity: 1;
}

.spotlight-card:hover {
    border-color: rgba(227, 30, 36, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.dark .spotlight-card:hover {
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.spotlight-logo {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: filter 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.spotlight-card:hover .spotlight-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.06);
}

@media (min-width: 640px) {
    .spotlight-card {
        aspect-ratio: 4 / 3;
    }
}

.ticket--agotado {
    opacity: 0.45;
    filter: grayscale(60%);
}

.ticket--agotado:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
    filter: grayscale(80%);
    opacity: 0.4;
}

html:not(.dark) .ticket--agotado:hover {
    border-color: rgba(0, 0, 0, 0.07);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.02);
    filter: grayscale(80%);
    opacity: 0.4;
}

.ticket--agotado:hover .ticket-stub,
.dark .ticket--agotado:hover .ticket-stub {
    background-color: transparent;
}

.ticket-tipo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(227, 30, 36, 0.07);
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.dark .ticket-tipo-badge {
    background-color: rgba(255, 215, 0, 0.07);
}

.ticket:hover .ticket-tipo-badge {
    background-color: rgba(227, 30, 36, 0.15);
}

.dark .ticket:hover .ticket-tipo-badge {
    background-color: rgba(255, 215, 0, 0.15);
}

.ticket-tipo-badge svg {
    width: 22px;
    height: 22px;
    color: #E31E24;
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.dark .ticket-tipo-badge svg {
    color: #FFD700;
}

.ticket:hover .ticket-tipo-badge svg {
    opacity: 0.9;
    animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.ticket:hover .ticket-tipo-badge--spin svg {
    animation: iconSpin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.ticket:hover .ticket-tipo-badge--pop svg {
    animation: iconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.ticket-horarios {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
}

.filtros-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filtro-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
    color: inherit;
    opacity: 0.45;
    font-family: 'Montserrat', sans-serif;
}

.dark .filtro-btn {
    border-color: rgba(255, 255, 255, 0.1);
}

.filtro-btn:hover {
    opacity: 0.75;
}

.filtro-btn.is-active {
    background-color: #E31E24;
    color: #ffffff;
    border-color: #E31E24;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.25);
}

.dark .filtro-btn.is-active {
    background-color: #FFD700;
    color: #1D2338;
    border-color: #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.filtro-toggle.is-active {
    background-color: #1D2338;
    color: #ffffff;
    border-color: #1D2338;
}

.dark .filtro-toggle.is-active {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}