/* ==========================================================================
   Reset básico y configuración global
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    transition: background-color 0.2s linear;

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #111111;
    background-color: #F5F5F5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* main.css */

/* ==========================================================================
  Sky Background and Animated Elements
  ========================================================================== */
:root {
   /* Sky gradient colors */
   --sky-top: #87CEEB;
   --sky-middle: #98D8E8;
   --sky-bottom: #B6E5F8;
   --cloud-color: rgba(255, 255, 255, 0.8);
}

/* Sky background */
body {
   background: linear-gradient(180deg, 
       #d8f4ff 0%, 
       #87d4e7 20%, 
       #305d68 30%, 
       #63c1e6 40%, 
       #FFE5B4 70%, 
       #FFDAB9 90%,
       #9c5c23 100%);
   min-height: 100vh;
   position: relative;
   overflow-x: hidden !important;
}

/* Animated clouds */
.sky-element {
   position:absolute;
   pointer-events: none;
   z-index: 1;
}

/* Cloud layers */
.cloud {
   position: absolute;
   background: white;
   border-radius: 100px;
   opacity: 0.7;
   filter: blur(2px);
}

.cloud::before,
.cloud::after {
   content: '';
   position: absolute;
   background: white;
   border-radius: 100px;
}

.cloud-1 {
   width: 100px;
   height: 40px;
   top: 20%;
   animation: float-cloud 60s infinite linear;
}

.cloud-1::before {
   width: 50px;
   height: 50px;
   top: -25px;
   left: 10px;
}

.cloud-1::after {
   width: 60px;
   height: 40px;
   top: -15px;
   right: 10px;
}

.cloud-2 {
   width: 80px;
   height: 35px;
   top: 40%;
   animation: float-cloud 80s infinite linear reverse;
}

.cloud-2::before {
   width: 60px;
   height: 45px;
   top: -20px;
   left: 15px;
}

.cloud-2::after {
   width: 50px;
   height: 35px;
   top: -10px;
   right: 15px;
}

.cloud-3 {
   width: 80px;
   height: 35px;
   top: 70%;
   animation: float-cloud 80s infinite linear reverse;
}

.cloud-3::before {
   width: 60px;
   height: 45px;
   top: -20px;
   left: 15px;
}

.cloud-3::after {
   width: 50px;
   height: 35px;
   top: -10px;
   right: 15px;
}

/* Flying elements container */
.sky-elements-container {
   overflow-x: hidden !important;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   z-index: 2;
}

/* Animations */
@keyframes float-cloud {
   from {
       left: -200px;
   }
   to {
       left: 110%;
   }
}

/* ==========================================================================
   Utilidades
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Header - Banner Promocional Animado
   ========================================================================== */
.header {
    background: #E91E63;
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.3);
}

.header__banner {
    width: 100%;
    padding: 12px 0;
    position: relative;
    background: linear-gradient(90deg, #E91E63 0%, #C2185B 50%, #E91E63 100%);
    background-size: 200% 100%;
    animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.header__banner-track {
    display: flex;
    width: fit-content;
    animation: scroll-text 30s linear infinite;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.header__banner-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 20px;
}

.header__text {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 15px;
}

.header__highlight {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.header__separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    margin: 0 10px;
}

.header__emoji {
    font-size: 1.5rem;
    margin: 0 10px;
    animation: rotate-emoji 4s ease-in-out infinite;
}

@keyframes rotate-emoji {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

/* Hover effect */
.header__banner:hover .header__banner-track {
    animation-play-state: paused;
}

.header__banner:hover .header__highlight {
    color: white;
    background: #FFD700;
    padding: 2px 10px;
    border-radius: 20px;
    color: #E91E63;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .header__banner {
        padding: 10px 0;
    }
    
    .header__text {
        font-size: 0.85rem;
        margin: 0 10px;
    }
    
    .header__highlight {
        font-size: 0.95rem;
        margin: 0 10px;
    }
    
    .header__emoji {
        font-size: 1.2rem;
        margin: 0 8px;
    }
    
    .header__separator {
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .header__text {
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin: 0 8px;
    }
    
    .header__highlight {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .header__emoji {
        font-size: 1rem;
        margin: 0 5px;
    }
    
    .header__separator {
        font-size: 1rem;
        margin: 0 5px;
    }
}

/* Ensure smooth scrolling on all devices */
@media (prefers-reduced-motion: reduce) {
    .header__banner-track {
        animation: none;
    }
    
    .header__emoji {
        animation: none;
    }
    
    .header__highlight {
        animation: none;
    }
}

/* ==========================================================================
   Navigation - Menú principal
   ========================================================================== */
.nav {
    color: white;
    position: relative;
    z-index: 3;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

.nav__list {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.nav__item {
    position: relative;
}

.nav__link {
    display: block;
    padding: 20px 25px;
    color: white;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav__link:hover,
.nav__link:focus {
    background-color: #E91E63;
    outline: none;
}

/* Submenú desplegable */
.nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav__item:hover .nav__submenu,
.nav__item:focus-within .nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__submenu-link {
    display: block;
    padding: 12px 20px;
    color: #111111;
    border-bottom: 1px solid #F5F5F5;
    transition: background-color 0.2s ease;
}

.nav__submenu-link:hover {
    background-color: #F5F5F5;
    color: #E91E63;
}

/* ==========================================================================
   Hero Section - Festival Style
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    max-height: 870px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Background */
.hero__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(17, 17, 17, 0.836) 0%, 
        rgba(0, 0, 0, 0.856) 50%, 
        rgb(17, 17, 17) 100%);
}

/* Content */
.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

/* Date Badge */
.hero__date-badge {
    display: inline-flex;
    flex-direction: column;
    background: #E91E63;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
    animation: bounce-in 0.8s ease-out;
}

.hero__date-day {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.hero__date-month {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Title */
.hero__title {
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -2px;
    animation: title-reveal 1s ease-out 0.3s both;
}

.hero__title-line {
    display: block;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.8),
        0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero__title-line--small {
    font-size: 3rem;
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: -5px;
}

.hero__title-line--medium {
    font-size: 4rem;
    margin-bottom: -10px;
}

.hero__title-line--big {
    font-size: 8rem;
    color: #ffffff;
    letter-spacing: -4px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

/* Maple leaf decoration for CANADA */
.hero__title-line--big::before,
.hero__title-line--big::after {
    content: '🍁';
    position: absolute;
    font-size: 3rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.hero__title-line--big::before {
    left: -60px;
}

.hero__title-line--big::after {
    right: -60px;
}

/* Locations */
.hero__locations {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 2px;
    animation: fade-in-up 1s ease-out 0.6s both;
}

.hero__location {
    display: inline-block;
    padding: 0 15px;
}

.hero__separator {
    color: #E91E63;
    font-size: 2rem;
    vertical-align: middle;
}

/* CTAs */
.hero__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 1s ease-out 0.9s both;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero__cta--primary {
    background: #E91E63;
    color: white;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
}

.hero__cta--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.6);
}

.hero__cta--primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.hero__cta--primary:hover::before {
    animation: shine 0.5s ease-out;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.hero__cta--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero__cta--secondary:hover {
    background: white;
    color: #E91E63;
    transform: translateY(-3px);
}

/* Decorative Elements */
.hero__decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero__decoration {
    position: absolute;
    font-size: 3rem;
    animation: float-decoration 20s infinite linear;
    opacity: 0.6;
}

.hero__decoration--1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero__decoration--2 {
    top: 30%;
    right: 15%;
    animation-delay: 5s;
}

.hero__decoration--3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 10s;
}

.hero__decoration--4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes float-decoration {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.hero__scroll-text {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

/* Animations */
@keyframes bounce-in {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes title-reveal {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-up {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero__title-line--big {
        font-size: 6rem;
    }
    
    .hero__title-line--big::before,
    .hero__title-line--big::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero__title-line--small {
        font-size: 2rem;
    }
    
    .hero__title-line--medium {
        font-size: 2.5rem;
    }
    
    .hero__title-line--big {
        font-size: 4rem;
        letter-spacing: -2px;
    }
    
    .hero__locations {
        font-size: 1.2rem;
    }
    
    .hero__cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .hero__decoration {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {

    .hero {
    position: relative;
    height: 100vh;
    max-height: 790px;
    }

    .hero__date-badge {
        padding: 0px 25px;
    }
    
    .hero__date-day {
        font-size: 1.5rem;
    }
    
    .hero__title-line--small {
        font-size: 2.5rem;
    }
    
    .hero__title-line--medium {
        font-size: 3rem;
    }
    
    .hero__title-line--big {
        font-size: 3.5rem;
    }
    
    .hero__locations {
        font-size: 1rem;
    }
    
    .hero__cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__cta {
        width: 100%;
        max-width: 250px;
    }
}




.hero__title {
    margin-bottom: 0px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px; /* Ajustar según el tamaño de tu logo */
}

/* Logo principal */
.hero__logo {
    width: 55%;
    max-width: 700px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: logo-entrance 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
               logo-float 6s ease-in-out 1.5s infinite;
    opacity: 0;
    transform: scale(0.3) rotate(-180deg);
}

/* Animación de entrada épica */
@keyframes logo-entrance {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-180deg);
        filter: blur(20px) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(10deg);
        filter: blur(0) drop-shadow(0 30px 60px rgba(233, 30, 99, 0.4));
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    }
}

/* Animación de flotación continua */
@keyframes logo-float {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) scale(1.02) rotate(2deg);
    }
    75% {
        transform: translateY(10px) scale(0.98) rotate(-2deg);
    }
}

/* Efectos de resplandor alrededor del logo */
.hero__title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle,
        rgba(233, 30, 99, 0.3) 0%,
        rgba(255, 107, 53, 0.2) 30%,
        rgba(255, 215, 0, 0.1) 60%,
        transparent 100%);
    filter: blur(40px);
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: 1;
}

/* Animación del resplandor */
@keyframes glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Efecto hover para interactividad */
.hero__logo:hover {
    animation-play-state: paused;
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 30px 60px rgba(233, 30, 99, 0.5))
            brightness(1.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Partículas decorativas (opcional) */
.hero__title {
    overflow: visible;
}

.hero__title::before {
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero__title {
        height: 200px;
    }
    
    .hero__logo {
        max-width: 550px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        height: 150px;
    }
    
    .hero__logo {
        max-width: 500px;
    }
    
    @keyframes logo-entrance {
        0% {
            opacity: 0;
            transform: scale(0.5) rotate(-90deg);
            filter: blur(10px) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
        }
        50% {
            opacity: 1;
            transform: scale(1.05) rotate(5deg);
            filter: blur(0) drop-shadow(0 15px 30px rgba(233, 30, 99, 0.4));
        }
        100% {
            opacity: 1;
            transform: scale(1) rotate(0deg);
            filter: blur(0) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
        }
    }
}
/* ==========================================================================
   Events Section - Lista de eventos
   ========================================================================== */

.events__heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #111111;
    position: relative;
    display: inline-block;
    width: 100%;
}

.events__heading::after {
    content: '🎸';
    position: absolute;
    font-size: 1.5rem;
    margin-left: 10px;
}

.events__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.events__item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.events__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.events__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.events__info {
    padding: 20px;
}

.events__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.events__date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.events__artist {
    font-weight: 600;
    color: #E91E63;
}

.events__link {
    display: inline-block;
    padding: 8px 20px;
    background-color: #E91E63;
    color: white;
    border-radius: 20px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.events__link:hover {
    background-color: #C2185B;
}

/* ==========================================================================
   Passes Section - Pases y newsletter
   ========================================================================== */
.passes {
    padding: 60px 0;
    text-align: center;
}

.passes__heading {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #111111;
}

.passes__description {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.passes__subscribe {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.passes__input {
    padding: 12px 20px;
    border: 2px solid #E91E63;
    border-radius: 25px;
    font-size: 1rem;
    min-width: 300px;
}

.passes__button {
    padding: 12px 30px;
    background-color: #E91E63;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.passes__button:hover {
    background-color: #C2185B;
}

/* ==========================================================================
   Footer - Minimalista
   ========================================================================== */
.footer {
    background: linear-gradient(180deg, #0A0A0A 0%, #1A0A1A 100%);
    color: white;
    padding: 0px 0 30px;
    margin-top: 100px;
    position: relative;
    z-index: 10;
}

.footer__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer__brand {
    margin-bottom: 40px;
}

.footer__logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
    letter-spacing: -1px;
}

.footer__tagline {
    font-size: 1rem;
    color: #666666;
    font-weight: 400;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #333333;
    transition: all 0.3s ease;
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
    fill: #666666;
    transition: fill 0.3s ease;
}

.footer__social-link:hover {
    border-color: #E91E63;
    transform: translateY(-3px);
}

.footer__social-link:hover svg {
    fill: #E91E63;
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid #222222;
}

.footer__bottom p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 0px 0 0px;
        margin-top: 0px;
    }
    
    .footer__logo {
        font-size: 1.5rem;
    }
    
    .footer__social {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .footer__social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer__social-link svg {
        width: 18px;
        height: 18px;
    }
}

.footer__logo {
    display: block;      /* para que margin auto funcione */
    width: 200px;
    margin: 0 auto;      /* márgenes laterales automáticos centran el block */
    text-align: center;  /* opcional: centra el texto dentro */
}

/* ==========================================================================
   Next Event Section
   ========================================================================== */
.next-event {
    overflow: hidden;
    position: relative;
}

.next-event__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.next-event__content {
    position: relative;
    z-index: 2;
}

.next-event__title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.next-event__title-line {
    display: block;
    color: #ffffff;
    text-transform: uppercase;
}

.next-event__subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 500;
}

.next-event__cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.next-event__cta {
    display: inline-block;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.next-event__cta--primary {
    background-color: #E91E63;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 214, 50, 0.3);
}

.next-event__cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.4);}

.next-event__cta--secondary {
    background-color: transparent;
    color: #E91E63;
    border: 2px solid #E91E63;
}

.next-event__cta--secondary:hover {
    background-color: #E91E63;
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.4);
    color: white;
}

.next-event__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.next-event__image {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Decorative elements */
.next-event::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 214, 50, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.next-event::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .next-event {
        padding: 60px 0;
    }
    
    .next-event__wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    
    .next-event__title {
        font-size: 3rem;
    }
    
    .next-event__subtitle {
        font-size: 1.8rem;
    }
    
    .next-event__visual {
        order: -1;
    }
    
    .next-event__image {
        max-width: 300px;
    }
    
    .next-event__cta-group {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .next-event__title {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }
    
    .next-event__subtitle {
        font-size: 1.4rem;
    }
    
    .next-event__image {
        max-width: 220px;
    }
    
    .next-event__cta {
        padding: 12px 30px;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Hero Section Updates
   ========================================================================== */
.hero__media {
    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__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero__title-line {
    display: block;
}

.hero__emojis {
    font-size: 1.5rem;
    margin-left: 10px;
}

.hero__cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__cta--primary {
    background-color: white;
    color: #E91E63;
}

.hero__cta--secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.hero__cta--secondary:hover {
    background-color: white;
    color: #E91E63;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.hero__scroll-text {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================================================
   Events Section - Choose Your City
   ========================================================================== */
.events {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #0A0A0A 0%, #1A0A1A 100%);
    overflow: hidden;
}

/* Background animation */
.events::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(233, 30, 99, 0.05) 0%, transparent 50%);
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Header */
.events__header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.events__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.events__title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 0.9;
}

.events__title-line {
    display: block;
    color: white;
    letter-spacing: -2px;
}

.events__title-line--accent {
    font-size: 5rem;
    background: linear-gradient(90deg, #E91E63 0%, #FF6B35 50%, #FFD700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s linear infinite;
}

.events__subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Grid */
.events__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

/* Card */
.events__item {
    background-color: transparent;
    position: relative;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.events__item:hover {
    transform: scale(1.03);
    z-index: 10;
}

.events__item-card {
    position: relative;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A1A2A 100%);
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.5s ease;
    cursor: pointer;
}

.events__item:hover .events__item-card {
    border-color: var(--accent-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(233, 30, 99, 0.2);
}

/* Decorations */
.events__item-decoration {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 3;
}

.events__item-decoration--1 {
    top: 20px;
    left: 20px;
}

.events__item-decoration--2 {
    bottom: 20px;
    right: 20px;
}

.events__item:hover .events__item-decoration {
    opacity: 0.8;
    animation: float-emoji 3s ease-in-out infinite;
}

.events__item:hover .events__item-decoration--1 {
    animation-delay: 0s;
}

.events__item:hover .events__item-decoration--2 {
    animation-delay: 1.5s;
}

@keyframes float-emoji {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

/* Date Badge */
.events__item-date-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--accent-color);
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.events__item:hover .events__item-date-badge {
    transform: rotate(-5deg) scale(1.1);
}

.events__item-day {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.events__item-date {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.events__item-month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* Image */
.events__item-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.events__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.events__item:hover .events__item-image img {
    transform: scale(1.1);
}

.events__item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.events__item:hover .events__item-overlay {
    opacity: 0.8;
}

.events__item-city-overlay {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: -2px;
    transition: all 0.5s ease;
}

.events__item:hover .events__item-city-overlay {
    color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Content */
.events__item-content {
    padding: 40px;
}

.events__item-title {
    margin-bottom: 20px;
}

.events__item-title-main {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
    line-height: 1;
}

.events__item-title-sub {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    letter-spacing: -1px;
    margin-top: 5px;
}

.events__item-details {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.events__item-detail {
    display: flex;
    align-items: center;
    gap: 8px;
}

.events__item-detail-icon {
    font-size: 1.2rem;
}

.events__item-detail-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.events__item-artists {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* CTA */
.events__item-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(0, 0, 0, 0.3) 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.events__item-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.events__item:hover .events__item-cta::before {
    left: 100%;
}

.events__item-cta-icon {
    transition: transform 0.3s ease;
}

.events__item:hover .events__item-cta-icon {
    transform: translateX(10px);
    animation: arrow-bounce 1s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateX(10px); }
    50% { transform: translateX(15px); }
}

/* Hover overlay */
.events__item-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(233, 30, 99, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.events__item:active .events__item-hover {
    opacity: 1;
}

.events__item-hover-text {
    color: white;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
}

/* Comparison */
.events__comparison {
    text-align: center;
    position: relative;
    z-index: 2;
}

.events__comparison-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: versus-pulse 2s ease-in-out infinite;
}

@keyframes versus-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.events__comparison-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

/* Mobile */
@media (max-width: 1024px) {
    .events__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .events {
        padding: 60px 0;
    }
    
    .events__title {
        font-size: 2.5rem;
    }
    
    .events__title-line--accent {
        font-size: 3.5rem;
    }
    
    .events__subtitle {
        font-size: 1.1rem;
    }
    
    .events__grid {
        padding: 0 20px;
    }
    
    .events__item-date-badge {
        top: 20px;
        left: 20px;
        padding: 15px;
    }
    
    .events__item-date {
        font-size: 2rem;
    }
    
    .events__item-content {
        padding: 30px 25px;
    }
    
    .events__item-title-main {
        font-size: 1.5rem;
    }
    
    .events__item-title-sub {
        font-size: 2rem;
    }
    
    .events__item-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .events__item-cta {
        padding: 20px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .events__title {
        font-size: 2rem;
    }
    
    .events__title-line--accent {
        font-size: 2.8rem;
    }
    
    .events__item-image {
        height: 250px;
    }
    
    .events__item-city-overlay {
        font-size: 3rem;
    }
}

/* ==========================================================================
   Support Section
   ========================================================================== */
.support {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0A0A0A 0%, #1A0A1A 100%);
}

/* Background decoration */
.support::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
    animation: float-bg 20s ease-in-out infinite;
}

@keyframes float-bg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

.support__wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Content */
.support__content {
    color: white;
}

.support__icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.support__icon {
    font-size: 4rem;
    display: block;
    animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.support__icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.3);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.support__title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 0.9;
}

.support__title-line {
    display: block;
    letter-spacing: -2px;
}

.support__title-line--accent {
    font-size: 4.5rem;
    background: linear-gradient(90deg, #E91E63 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support__description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Features */
.support__features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.support__feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.support__feature-icon {
    font-size: 1.5rem;
    animation: rotate-slow 4s linear infinite;
}

@keyframes rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.support__feature-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA */
.support__cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support__cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 60px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: fit-content;
}

.support__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.support__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.4);
}

.support__cta:hover::before {
    left: 100%;
}

.support__cta-icon {
    transition: transform 0.3s ease;
}

.support__cta:hover .support__cta-icon {
    transform: translate(3px, -3px);
}

.support__alternative {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.support__email {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.support__email:hover {
    color: white;
}

/* Visual - Chat Preview */
.support__visual {
    position: relative;
}

.support__chat-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s ease;
}

.support__chat-preview:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.support__chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.support__chat-status {
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
}

.support__chat-messages {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support__message {
    padding: 12px 18px;
    border-radius: 18px;
    max-width: 80%;
    font-size: 0.95rem;
    animation: message-appear 0.3s ease-out;
}

@keyframes message-appear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.support__message--agent {
    background: rgba(233, 30, 99, 0.2);
    color: white;
    align-self: flex-start;
}

.support__message--user {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    align-self: flex-end;
}

.support__typing {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 15px;
}

.support__typing span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.support__typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.support__typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .support__wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .support__visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .support__cta {
        margin: 0 auto;
    }
    
    .support__features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .support {
        padding: 60px 0;
    }
    
    .support__title {
        font-size: 2.5rem;
    }
    
    .support__title-line--accent {
        font-size: 3rem;
    }
    
    .support__description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .support__features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .support__chat-preview {
        transform: none;
    }
    
    .support__cta {
        padding: 18px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .support__icon {
        font-size: 3rem;
    }
    
    .support__title {
        font-size: 2rem;
    }
    
    .support__title-line--accent {
        font-size: 2.5rem;
    }
    
    .support__description {
        font-size: 1rem;
    }
    
    .support__visual {
        padding: 0 20px;
    }
    
    .support__message {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Tickets Section - Spectacular Design
   ========================================================================== */
.tickets {
    padding-top: 40px;
    position: relative;
    overflow: hidden;
}

/* Background animation */
.tickets::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: rotate-gradient 30s linear infinite;
}

/* Header */
.tickets__header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.tickets__badge {
    display: inline-block;
    background: linear-gradient(90deg, #E91E63 0%, #FF6B35 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.tickets__title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1;
}

.tickets__title-line {
    display: block;
    color: white;
    letter-spacing: -2px;
}

.tickets__title-line--accent {
    font-size: 4.5rem;
    background: linear-gradient(90deg, #E91E63 0%, #FFD700 50%, #FF6B35 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s linear infinite;
}

.tickets__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Grid */
.tickets__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

/* Card */
.tickets__card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

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

.tickets__card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #E91E63, #FF6B35, #FFD700, #E91E63);
    background-size: 300% 300%;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: gradient-animation 3s ease infinite;
    filter: blur(10px);
}

.tickets__card:hover .tickets__card-glow {
    opacity: 0.8;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tickets__card-inner {
    position: relative;
    background: #1A1A1A;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Featured card */
.tickets__card--featured .tickets__card-inner {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A1A1F 100%);
    border-color: rgba(233, 30, 99, 0.3);
}

.tickets__card--premium .tickets__card-inner {
    background: linear-gradient(135deg, #1A1A1A 0%, #1F1A2A 100%);
    border-color: rgba(255, 215, 0, 0.3);
}

/* Badge */
.tickets__card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #E91E63 0%, #C2185B 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    animation: bounce-badge 2s ease-in-out infinite;
}

@keyframes bounce-badge {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

/* Header */
.tickets__card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tickets__card-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    animation: rotate-icon 4s ease-in-out infinite;
}

@keyframes rotate-icon {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    75% { transform: rotate(10deg) scale(1.1); }
}

.tickets__card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.tickets__card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.tickets__card-currency {
    font-size: 1.5rem;
    color: #E91E63;
    font-weight: 600;
}

.tickets__card-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.tickets__card-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Features */
.tickets__card-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.tickets__card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.4;
}

.tickets__feature-icon {
    width: 20px;
    height: 20px;
    fill: #4CAF50;
    flex-shrink: 0;
    margin-top: 2px;
}

.tickets__feature--premium .tickets__feature-icon {
    fill: #FFD700;
}

/* Savings */
.tickets__savings {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    text-align: center;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Footer */
.tickets__card-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tickets__availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.tickets__availability-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.tickets__availability-dot--limited {
    background: #FF9800;
}

.tickets__availability-dot--exclusive {
    background: #E91E63;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

/* CTA Button */
.tickets__card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    background: linear-gradient(135deg, #333 0%, #444 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tickets__card-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.tickets__card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tickets__card-cta:hover::before {
    left: 100%;
}

.tickets__card-cta--featured {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
}

.tickets__card-cta--premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1A1A1A;
}

/* Trust badges */
.tickets__footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.tickets__trust {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.tickets__trust-icon {
    font-size: 1.5rem;
}

/* Mobile Design */
@media (max-width: 768px) {
    
    .tickets__title {
        font-size: 2.5rem;
    }
    
    .tickets__title-line--accent {
        font-size: 3rem;
    }
    
    .tickets__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    /* Swipeable cards on mobile */
    .tickets__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 20px;
        gap: 20px;
    }
    
    .tickets__card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    
    .tickets__card-inner {
        padding: 30px 20px;
    }
    
    .tickets__card-title {
        font-size: 1.5rem;
    }
    
    .tickets__card-amount {
        font-size: 2.5rem;
    }
    
    .tickets__footer {
        gap: 20px;
        padding: 0 20px;
    }
    
    .tickets__trust {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .tickets__title {
        font-size: 3rem;
    }
    
    .tickets__title-line--accent {
        font-size: 3.5rem;
    }
    
    .tickets__subtitle {
        font-size: 1rem;
    }
    
    .tickets__card {
        flex: 0 0 90%;
    }
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners {
    padding-top: 40px;
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.partners::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: rotate-gradient 20s linear infinite;
}

.partners::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: rotate-gradient 30s linear infinite reverse;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.partners__header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.partners__title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 0.9;
}

.partners__title-line {
    display: block;
    color: white;
    letter-spacing: -2px;
}

.partners__title-line--accent {
    font-size: 5rem;
    background: linear-gradient(90deg, #E91E63 0%, #FFD700 50%, #E91E63 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s linear infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.partners__subtitle {
    padding-top: -5px;
    text-transform: uppercase;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 800;
    letter-spacing: 1px;
}

/* Showcase */
.partners__showcase {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 60px;
    mask-image: linear-gradient(to right, 
        transparent 0%, 
        black 10%, 
        black 90%, 
        transparent 100%);
}

.partners__track {
    display: flex;
    gap: 40px;
    height: 100%;
    align-items: center;
    animation: scroll-partners 30s linear infinite;
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Partner Items */
.partners__item {
    flex-shrink: 0;
    perspective: 1000px;
}

.partners__card {
    width: 180px;
    height: 180px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.partners__item:hover .partners__card {
    transform: rotateY(180deg);
}

.partners__card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.partners__card-front,
.partners__card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.partners__card-front {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.partners__card-back {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    transform: rotateY(180deg);
}

.partners__logo {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partners__item:hover .partners__logo {
    opacity: 1;
    transform: scale(1.1);
}

.partners__name {
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
}

/* Premium partners */
.partners__item--premium .partners__card-front {
    border-color: rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
}

.partners__item--premium .partners__card-back {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

/* CTA */
.partners__cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.partners__button {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(90deg, #E91E63 0%, #C2185B 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.partners__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.partners__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}

.partners__button:hover::before {
    left: 100%;
}

/* Mobile Epic Design */
@media (max-width: 768px) {
    .partners__title {
        font-size: 3rem;
    }
    
    .partners__title-line--accent {
        font-size: 3.5rem;
    }
    
    .partners__subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    /* Mobile Grid Layout */
    .partners__showcase {
        height: auto;
        mask-image: none;
        padding: 0 20px;
    }
    
    .partners__track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        animation: none;
    }
    
    .partners__item {
        transform: scale(0);
        animation: pop-in 0.5s ease-out forwards;
    }
    
    .partners__item:nth-child(1) { animation-delay: 0.1s; }
    .partners__item:nth-child(2) { animation-delay: 0.2s; }
    .partners__item:nth-child(3) { animation-delay: 0.3s; }
    .partners__item:nth-child(4) { animation-delay: 0.4s; }
    .partners__item:nth-child(5) { animation-delay: 0.5s; }
    .partners__item:nth-child(6) { animation-delay: 0.6s; }
    
    /* Hide duplicates on mobile */
    .partners__item:nth-child(n+7) {
        display: none;
    }
    
    @keyframes pop-in {
        0% {
            transform: scale(0) rotate(-180deg);
            opacity: 0;
        }
        50% {
            transform: scale(1.1) rotate(10deg);
        }
        100% {
            transform: scale(1) rotate(0deg);
            opacity: 1;
        }
    }
    
    .partners__card {
        width: 100%;
        height: 150px;
    }
    
    /* Auto-flip animation on mobile */
    .partners__card {
        animation: auto-flip 8s infinite;
        animation-delay: calc(var(--index) * 1s);
    }
    
    @keyframes auto-flip {
        0%, 40% { transform: rotateY(0deg); }
        50%, 90% { transform: rotateY(180deg); }
        100% { transform: rotateY(360deg); }
    }
    
    .partners__button {
        font-size: 0.9rem;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .partners__title {
        font-size: 3rem;
    }
    
    .partners__title-line--accent {
        font-size: 4.5rem;
    }
    
    .partners__card {
        height: 120px;
    }
    
    .partners__logo {
        max-width: 80px;
    }
    
    .partners__name {
        font-size: 1rem;
    }
}

/* Hover pause on desktop */
@media (min-width: 769px) {
    .partners__showcase:hover .partners__track {
        animation-play-state: paused;
    }
}


/* ==========================================================================
   Media Queries - Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    /* Header responsive */
    .header__container {
        flex-direction: column;
        gap: 15px;
    }
    
    .header__controls {
        display: flex;
        gap: 20px;
        width: 100%;
        justify-content: center;
    }
    
    /* Next Event responsive */
    .next-event__card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }
    
    .next-event__image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .next-event__artists {
        font-size: 1.2rem;
    }  
    
}

@media (max-width: 480px) {
    .events__heading {
        font-size: 1.75rem;
    }
    
    /* Container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Events filters */
    .events__filter {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    
    /* City selector */
    .header__city-dropdown {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .header__city-selector:hover .header__city-dropdown {
        transform: translateX(-50%) translateY(0);
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
*:focus {
    outline: 3px solid #E91E63;
    outline-offset: 2px;
}

/* Remove focus outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Print styles */
@media print {
    .header,
    .nav,
    .hero__video,
    .newsletter,
    .footer {
        display: none;
    }
    
    .events__item {
        page-break-inside: avoid;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Loading states */
.is-loading {
    position: relative;
    color: transparent;
}

.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #E91E63;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}