
@font-face {
    font-family: 'DEVILCANDLE';
    src: url('/assets/fonts/DEVILCANDLE.otf') format('opentype'),
         url('../fonts/DEVILCANDLE.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(255, 165, 0, 0.03) 0%, transparent 100%),
                radial-gradient(ellipse at bottom, rgba(0, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: transparent;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-desktop {
    display: flex;
    gap: 40px;
}

.nav-desktop a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
}

.nav-desktop a:hover {
    color: #ffa500;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.6);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffa500, #ff8c00);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}
}

.nav-desktop a:hover::after {
    width: 100%;
}

.btn-header {
    background: transparent;
    border: 2px solid #ffa500;
    color: #ffa500;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-header:hover {
    background: #ffa500;
    color: #000;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    position: relative;
    width: 30px;
    height: 24px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    left: 0;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.mobile-menu-btn span:nth-child(3) {
    bottom: 0;
}

/* Transformação para X */
.mobile-menu-btn.open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
}

.mobile-menu-btn.open span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-menu-content a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    margin: 20px 0;
    transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
    color: #ffa500;
}

.btn-mobile {
    background: #ffa500;
    border: none;
    color: #000;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 15s infinite;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
}

.savethedate {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-back-label {
    margin-bottom: 30px;
    overflow: hidden;
}

.label-text {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffa500;
    text-transform: uppercase;
    animation: slideInDown 1.2s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glitch-text {
    font-family: 'DEVILCANDLE', 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 400;
    color: #fff;
    line-height: 0.9;
    position: relative;
    margin: 20px 0;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    animation: glitch-animation 4s ease infinite;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title-line {
    display: block;
    line-height: 1;
    width: 100%;
}

.title-line:last-child {
    letter-spacing: 0.1em;
}



@keyframes glitch-animation {
    0% {
        text-shadow: 
            -1px 0 #ff00de, 
            1px 0 #00ffff, 
            0 0 20px rgba(0, 0, 0, 0.8);
    }
    25% {
        text-shadow: 
            1px 0 #ff00de, 
            -1px 0 #00ffff,
            0 0 20px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 
            -1px 0 #00ffff, 
            1px 0 #ff00de, 
            0 0 20px rgba(0, 0, 0, 0.8);
    }
    75% {
        text-shadow: 
            1px 0 #00ffff, 
            -1px 0 #ff00de,
            0 0 20px rgba(0, 0, 0, 0.8);
    }
    100% {
        text-shadow: 
            -1px 0 #ff00de, 
            1px 0 #00ffff, 
            0 0 20px rgba(0, 0, 0, 0.8);
    }
}
    }
    100% {
        text-shadow: 
            -2px 0 #ff00de, 
            2px 0 #00ffff, 
            0 0 20px rgba(0, 0, 0, 0.8);
    }
}

.glitch-text::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: glitch-before 0.4s ease infinite;
    color: #ff00de;
    z-index: -1;
}

@keyframes glitch-before {
    0% {
        clip-path: inset(0 0 0 0);
    }
    25% {
        clip-path: inset(0.05em 0 0.3em 0);
    }
    50% {
        clip-path: inset(0.2em 0 0.05em 0);
    }
    75% {
        clip-path: inset(0.05em 0 0.2em 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}



.subtitle-halloween {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    color: #00ffff;
    letter-spacing: 4px;
    margin: 15px 0;
    text-transform: uppercase;
    animation: fadeInUp 1.4s ease-out;
}

.suspense-text {
    font-size: 18px;
    color: #ccc;
    letter-spacing: 2px;
    margin-bottom: 40px;
    animation: fadeInUp 1.6s ease-out;
}

.countdown-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.countdown {
    display: flex;
    gap: 30px;
    animation: fadeInUp 1.8s ease-out;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.countdown-value {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffa500;
    line-height: 1;
    min-width: 80px;
    text-align: center;
    border: 2px solid #ffa500;
    padding: 15px;
    border-radius: 4px;
    animation: pulse-glow 2s ease infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 165, 0, 0.8);
    }
}

.countdown-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .countdown {
        gap: 15px;
    }
    
    .countdown-value {
        font-size: 32px;
        min-width: 60px;
        padding: 10px;
    }
}

.section {
    padding: 100px 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.section-number {
    font-family: 'Oswald', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: #ffa500;
    line-height: 1;
    animation: slideNumberIn 1s ease-out;
}

@keyframes slideNumberIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    text-transform: lowercase;
    line-height: 1;
    animation: slideTitleIn 1s ease-out 0.2s both;
    position: relative;
}

@keyframes slideTitleIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #ffa500, transparent);
    animation: expandLine 0.8s ease-out 0.4s both;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.lineup-section {
    background: #111;
}

.lineup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.artists-list {
    padding-top: 20px;
}

.artist-item {
    padding: 30px 0;
    border-bottom: 1px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    animation: slideInArtist 0.6s ease-out;
}

@keyframes slideInArtist {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.artist-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffa500, #ff8c00);
    transition: width 0.3s ease;
}

.artist-item:hover::before {
    width: 100%;
}

.artist-item:hover {
    padding-left: 20px;
    border-bottom-color: #333;
    box-shadow: inset 20px 0 20px rgba(255, 165, 0, 0.1);
}

.artist-item:last-child {
    border-bottom: none;
}

.artist-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.artist-item:hover h3 {
    color: transparent;
    text-shadow: none;
    animation: smokeTextReveal 2s ease-in-out infinite;
    filter: blur(8px);
}

.artist-item h3::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 165, 0, 0.8) 0%, rgba(255, 165, 0, 0.4) 20%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(255, 100, 0, 0.6) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 30%, rgba(255, 165, 0, 0.5) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: smokePulse 1.5s ease-in-out infinite;
    border-radius: 50%;
    filter: blur(6px);
}

.artist-item:hover h3::after {
    opacity: 1;
}

@keyframes smokeTextReveal {
    0% {
        filter: blur(15px);
        letter-spacing: 15px;
    }
    50% {
        filter: blur(10px);
        letter-spacing: 8px;
    }
    100% {
        filter: blur(15px);
        letter-spacing: 15px;
    }
}

@keyframes smokePulse {
    0% {
        opacity: 0.7;
        transform: translateY(0) scaleX(1);
    }
    25% {
        opacity: 0.85;
        transform: translateY(-3px) scaleX(1.1);
    }
    50% {
        opacity: 0.9;
        transform: translateY(-6px) scaleX(0.9);
    }
    75% {
        opacity: 0.8;
        transform: translateY(-3px) scaleX(1.05);
    }
    100% {
        opacity: 0.7;
        transform: translateY(0) scaleX(1);
    }
}

.artist-item p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 8px;
}

.artist-item a {
    color: #ffa500;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.artist-item a:hover {
    color: #fff;
}

.lineup-images {
    position: relative;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 165, 0, 0.2);
    border: 1px solid rgba(255, 165, 0, 0.3);
    animation: fadeInImages 0.8s ease-out;
}

@keyframes fadeInImages {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lineup-images::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffa500 50%, transparent);
    z-index: 2;
}

.lineup-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.lineup-slide.active {
    opacity: 1;
}

.lineup-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingressos-section {
    background: #000;
}

.ingressos-coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 40px 20px;
}

.coming-soon-box {
    background: transparent;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 60px 50px;
    text-align: center;
    max-width: 550px;
    position: relative;
    overflow: visible;
}

.coming-soon-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50px;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffa500, transparent);
}

.coming-soon-box::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 50px;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffa500, transparent);
}

.coming-soon-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.coming-soon-box p {
    font-size: 15px;
    color: #999;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    line-height: 1.8;
    font-weight: 300;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #ffa500;
    border-radius: 2px;
    padding: 12px 28px;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    color: #ffa500;
    transition: all 0.3s ease;
}

.status-badge:hover {
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.3);
    background: rgba(255, 165, 0, 0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ffa500;
    border-radius: 50%;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.date-hint {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ingressos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.ingressos-left {
    padding-right: 20px;
}

.ingressos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.ingresso-card {
    background: #111;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ingresso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffa500, #ff8c00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ingresso-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ingresso-card:hover::before {
    transform: scaleX(1);
}

.ingresso-card:hover::after {
    opacity: 1;
}

.ingresso-card:hover {
    border-color: #ffa500;
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.3), inset 0 0 20px rgba(255, 165, 0, 0.05);
    background: #1a1a1a;
}

.ingresso-card h5 {
    font-size: 12px;
    color: #ffa500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.ingresso-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ingresso-card h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffa500;
    margin-bottom: 12px;
    line-height: 1;
}

.ingresso-card p {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 0;
}

.saiba-mais {
    color: #ffa500;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid #ffa500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 8px;
}

.saiba-mais:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.btn-container {
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    border: none;
    color: #000;
    padding: 20px 45px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.4);
}

.ingressos-right {
    padding-left: 20px;
}

.local-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.endereco {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #ffa500;
}

.endereco h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffa500;
    margin-bottom: 10px;
}

.endereco p {
    color: #ccc;
    margin-bottom: 5px;
    font-size: 14px;
}

.mapa-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    height: 300px;
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.info-adicional {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 165, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 165, 0, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
}

.info-item img {
    width: 24px;
    height: 24px;
    filter: invert(64%) sepia(98%) saturate(1352%) hue-rotate(5deg) brightness(103%) contrast(101%);
}

.icon-time {
    font-size: 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffa500;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.info-item p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

.spotify-section {
    background: #111;
    padding: 80px 0;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.section-title-spotify {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 60px;
    text-align: center;
}

.spotify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: auto;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.spotify-artist {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    border-left: 4px solid #ffa500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spotify-artist:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.2);
    border-left-width: 6px;
}

.spotify-player {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.spotify-player iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.spotify-artist:hover .spotify-player iframe {
    transform: scale(1.01);
}

.artist-info {
    text-align: center;
    position: relative;
}

.artist-info h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-info p {
    font-size: 16px;
    color: #ffa500;
    font-weight: 500;
    opacity: 0.9;
}

.galeria-section {
    background: #000;
    text-align: center;
    padding: 80px 0;
}

.eventos-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: zoomInTitle 1s ease-out;
    position: relative;
}

@keyframes zoomInTitle {
    from {
        opacity: 0;
        transform: scale(0.8);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

.eventos-title::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ffa500, #ff8c00);
    animation: expandWide 0.8s ease-out 0.3s both;
}

@keyframes expandWide {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

.galeria-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.ver-galeria {
    color: #ffa500;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #ffa500;
    margin-bottom: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #ffa500;
}

.ver-galeria:hover {
    color: #000;
    background: #ffa500;
    transform: translateY(-2px);
}

.galeria-grid-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    gap: 20px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #111;
    animation: slideInGallery 0.8s ease-out;
}

@keyframes slideInGallery {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.galeria-item.large {
    grid-column: span 2;
    grid-row: span 2;
    animation-delay: 0.1s;
}

.galeria-item.wide {
    grid-column: span 2;
    animation-delay: 0.2s;
}

.galeria-item.tall {
    grid-row: span 2;
    animation-delay: 0.15s;
}

.galeria-item:hover {
    transform: translateY(-5px) scale(1.02);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-icon {
    font-size: 32px;
    color: #ffa500;
    animation: iconPulse 1s ease infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
    }
}

.galeria-description {
    max-width: 600px;
    margin: 0 auto;
}

.galeria-description p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
}

.footer {
    background: linear-gradient(180deg, #111 0%, #000 100%);
    padding: 60px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 165, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffa500 50%, transparent);
    animation: glowFooter 3s ease-in-out infinite;
}

@keyframes glowFooter {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.6);
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-content > p {
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
}

.footer-sponsors {
    display: flex;
    gap: 60px;
    align-items: center;
}

.sponsor-item {
    text-align: center;
}

.sponsor-item p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

.sponsor-item img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.sponsor-item img:hover {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .lineup-content {
        gap: 50px;
    }
    
    .ingressos-content {
        gap: 50px;
    }
    
    .section-number {
        font-size: 60px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .btn-header {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .savethedate h6 {
        font-size: 12px;
        letter-spacing: 4px;
    }
    
    .savethedate h1 {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .section-number {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .lineup-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lineup-images {
        height: 400px;
    }
    
    .artist-item h3 {
        font-size: 24px;
    }
    
    .ingressos-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ingressos-left, .ingressos-right {
        padding: 0;
    }
    
    .ingressos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .coming-soon-box {
        padding: 40px 30px;
        max-width: 100%;
    }
    
    .coming-soon-box h3 {
        font-size: 28px;
        margin-bottom: 18px;
    }
    
    .coming-soon-box p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .status-badge {
        padding: 10px 20px;
        font-size: 11px;
        margin-bottom: 20px;
    }
    
    .spotify-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-sponsors {
        flex-direction: column;
        gap: 30px;
    }
    
    .galeria-grid-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 15px;
    }
    
    .galeria-item.large,
    .galeria-item.wide {
        grid-column: span 2;
    }
    
    .galeria-item.tall {
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .coming-soon-box {
        padding: 35px 20px;
    }
    
    .coming-soon-box h3 {
        font-size: 24px;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .coming-soon-box p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .status-badge {
        padding: 9px 18px;
        font-size: 10px;
    }
    
    .date-hint {
        font-size: 12px;
    }
    
    .ingresso-card {
        padding: 30px 20px;
    }
    
    .ingresso-card h2 {
        font-size: 28px;
    }
    
    .galeria-grid-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 15px;
    }
    
    .galeria-item.large,
    .galeria-item.wide,
    .galeria-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .spotify-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-title-spotify {
        font-size: clamp(2.5rem, 15vw, 4.5rem);
        margin-bottom: 40px;
    }
    
    .spotify-artist {
        padding: 20px;
    }
    
    .artist-info h4 {
        font-size: 20px;
    }
    
    .artist-info p {
        font-size: 14px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-on-hover {
    transition: transform 0.3s ease;
}

.scale-on-hover:hover {
    transform: scale(1.05);
}

@keyframes spotifySlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(var(--offset)) scale(1);
    }
}

.spotify-artist {
    animation: spotifySlideIn 0.6s ease forwards;
}

.spotify-artist:nth-child(1) {
    --offset: 0px;
    animation-delay: 0.1s;
}

.spotify-artist:nth-child(2) {
    --offset: 40px;
    animation-delay: 0.2s;
}

.spotify-artist:nth-child(3) {
    --offset: -20px;
    animation-delay: 0.3s;
}



.spotify-artist:nth-child(4) {
    --offset: 60px;
    animation-delay: 0.4s;
}

.spotify-artist:nth-child(5) {
    --offset: 20px;
    animation-delay: 0.5s;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #ffa500;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8c00;
}
