@font-face {
    font-family: 'unzialish';
    src: url('../fonts/unzialish.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    
    --cor-primaria: #b8781b;      /* Amarelo-Escuro */
    --cor-secundaria: #e4992f;    /* Amarelo-Claro */
    --cor-neutral: #e0aa58;       /* Amarelo-Neutro */
    --cor-dark: #000000;          /* Preto */
    --cor-cinza: #252521;         /* Cinza escuro */
    --cor-smoke: #1c242e;         /* Cinza-Azulado escuro */
    --cor-texto: #f2f9d4;         /* Cor das Letras */
    --cor-texto-secondary: #b8c4a0; /* Letras secundárias */
    
    /* Tipografia */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-title: 'unzialish', cursive;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--cor-dark);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../images/texture-bg-full.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--cor-texto);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Overlay adicional para textura nas seções */
.lineup,
.about,
.tickets,
.location,
.footer {
    position: relative;
}

.lineup::before,
.about::before,
.tickets::before,
.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/texture-bg-full.png');
    background-size: 400px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.lineup > *,
.about > *,
.tickets > *,
.location > * {
    position: relative;
    z-index: 1;
}

/* Efeito scan line sutil */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cor-primaria), transparent);
    opacity: 0.3;
    animation: scanLine 4s linear infinite;
    pointer-events: none;
    z-index: 9999;
}

@keyframes scanLine {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 2rem;
}

/* Vídeo de fundo */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Overlay escuro sobre o vídeo */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Overlay preto */
    z-index: 1;
}

/* Textura por cima */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/texture-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 2;
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 3; /* Acima do vídeo, overlay e textura */
    max-width: 1200px;
}

.hero-logo {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 4px;
    color: var(--cor-secundaria);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.hero-title {
    font-family: 'unzialish', 'UnifrakturCook', cursive, sans-serif;
    font-size: clamp(5rem, 15vw, 12rem);
    line-height: 0.9;
    letter-spacing: 4px;
    color: var(--cor-texto);
    text-shadow: 
        0 0 20px rgba(184, 120, 27, 0.8),
        0 0 40px rgba(228, 153, 47, 0.6),
        2px 2px 10px rgba(0, 0, 0, 0.9);
    margin-bottom: 3.5rem; 
    animation: glowPulse 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--cor-texto-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(184, 120, 27, 0.8),
            0 0 40px rgba(228, 153, 47, 0.6),
            2px 2px 10px rgba(0, 0, 0, 0.9);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(184, 120, 27, 1),
            0 0 60px rgba(228, 153, 47, 0.8),
            2px 2px 15px rgba(0, 0, 0, 0.9);
    }
}

.hero-info {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.hero-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-info-label {
    font-size: 0.9rem;
    color: var(--cor-texto-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-info-value {
    font-weight: 700;
    font-size: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    color: var(--cor-dark);
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(184, 120, 27, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(228, 153, 47, 0.6);
}

.cta-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;
}

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

/* ============================================
   LINEUP SECTION
   ============================================ */
.lineup {
    padding: 8rem 2rem;
    background: var(--cor-cinza);
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    text-align: center;
    letter-spacing: 6px;
    margin-bottom: 4rem;
    position: relative;
    animation: glitchText 5s infinite;
}

@keyframes glitchText {
    0%, 90%, 100% {
        text-shadow: 
            0 0 10px var(--cor-primaria),
            0 0 20px var(--cor-secundaria);
    }
    92% {
        text-shadow: 
            -2px 0 var(--cor-primaria),
            2px 2px var(--cor-secundaria);
        transform: translate(-2px, 2px);
    }
    94% {
        text-shadow: 
            2px 0 var(--cor-secundaria),
            -2px -2px var(--cor-primaria);
        transform: translate(2px, -2px);
    }
    96% {
        text-shadow: 
            0 0 10px var(--cor-primaria),
            0 0 20px var(--cor-secundaria);
        transform: translate(0, 0);
    }
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-secundaria));
    margin: 1rem auto 0;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-card {
    background: var(--cor-dark);
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.artist-card:hover {
    border-color: var(--cor-primaria);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(184, 120, 27, 0.3);
    animation: cardGlitch 0.3s;
}

@keyframes cardGlitch {
    0%, 100% {
        transform: translateY(-10px);
    }
    25% {
        transform: translateY(-10px) translateX(-2px);
    }
    75% {
        transform: translateY(-10px) translateX(2px);
    }
}

.artist-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.artist-placeholder {
    /* Texto que aparece quando não há imagem */
    font-size: 4rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.artist-image::before {
    content: '♪';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    animation: float 3s ease-in-out infinite;
}

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

.artist-info {
    padding: 1.5rem;
}

.artist-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.artist-time {
    color: var(--cor-texto-secondary);
    font-size: 0.9rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 8rem 2rem;
    background: var(--cor-dark);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.about-box {
    background: var(--cor-cinza);
    padding: 3rem;
    border-left: 4px solid var(--cor-primaria);
    transition: all 0.3s ease;
}

.about-box:hover {
    border-left-width: 8px;
    transform: translateX(10px);
}

.about-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--cor-secundaria);
}

.about-box p {
    color: var(--cor-texto-secondary);
    line-height: 1.8;
}

/* ============================================
   TICKETS SECTION
   ============================================ */
.tickets {
    padding: 8rem 2rem;
    background: var(--cor-cinza);
    position: relative;
}

.tickets-content {
    max-width: 1200px;
    margin: 0 auto;
}

.countdown {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--cor-dark);
    border: 2px solid var(--cor-primaria);
}

.countdown-title {
    font-size: 1.2rem;
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.countdown-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--cor-primaria);
    line-height: 1;
    animation: numberGlitch 3s infinite;
}

@keyframes numberGlitch {
    0%, 96%, 100% {
        text-shadow: 
            0 0 10px var(--cor-primaria);
    }
    97% {
        text-shadow: 
            -1px 0 var(--cor-secundaria),
            1px 0 var(--cor-primaria);
    }
    98% {
        text-shadow: 
            1px 0 var(--cor-secundaria),
            -1px 0 var(--cor-primaria);
    }
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--cor-texto-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Texto de apoio do countdown — pré-venda */

.countdown-subtext {
  margin-top: 14px;
  font-size: 0.9rem;
  opacity: 0.85;
}



.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ticket-card {
    background: var(--cor-dark);
    padding: 3rem;
    border: 2px solid var(--cor-cinza);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.ticket-card.featured {
    border-color: var(--cor-primaria);
    
}

.ticket-card:hover {
    border-color: var(--cor-secundaria);
    transform: translateY(-10px);
}

.ticket-type {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.ticket-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--cor-primaria);
    margin-bottom: 1.5rem;
}

.ticket-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.ticket-features li {
    padding: 0.5rem 0;
    color: var(--cor-texto-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.ticket-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cor-secundaria);
    font-weight: bold;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
    padding: 8rem 2rem;
    background: var(--cor-dark);
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--cor-secundaria);
}

.location-address {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--cor-cinza);
}

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

.location-map {
    width: 100%;
    height: 400px;
    background: var(--cor-cinza);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cor-primaria);
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--cor-cinza);
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--cor-dark);
    border: 2px solid var(--cor-primaria);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-texto);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--cor-primaria);
    transform: translateY(-5px);
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    color: var(--cor-texto-secondary);
}

.footer-info a {
    color: var(--cor-texto-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: var(--cor-primaria);
}

.copyright {
    color: var(--cor-texto-secondary);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cor-dark);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

/* Tablets e telas médias (até 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(3rem, 12vw, 8rem);
    }
    
    .section-title {
        font-size: clamp(2.5rem, 7vw, 5rem);
    }
}

/* Tablets pequenos (até 768px) */
@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 1rem;
    }
    
    .hero-info {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .hero-info-item {
        align-items: center;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }

    .ticket-card.featured {
        transform: scale(1);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
}

/* Smartphones (até 480px) */
@media (max-width: 480px) {
    /* Hero ajustes para telas pequenas */
    .hero-logo {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: clamp(3.5rem, 15vw, 5rem);
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .hero-info {
        gap: 1rem;
    }
    
    .hero-info-value {
        font-size: 1.2rem;
    }
    
    .hero-info-label {
        font-size: 0.75rem;
    }
    
    /* Botão CTA mobile */
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }
    
    /* Seções com mais padding */
    .lineup,
    .about,
    .tickets,
    .location {
        padding: 4rem 1rem;
    }
    
    /* Títulos de seção menores */
    .section-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        margin-bottom: 2rem;
    }
    
    /* Artist cards mobile */
    .artist-image {
        height: 250px;
    }
    
    .artist-name {
        font-size: 1.5rem;
    }
    
    /* About boxes */
    .about-box {
        padding: 2rem 1.5rem;
    }
    
    .about-box h3 {
        font-size: 1.5rem;
    }
    
    /* Countdown mobile */
    .countdown {
        padding: 1.5rem 1rem;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    /* Tickets mobile */
    .ticket-card {
        padding: 2rem 1.5rem;
    }
    
    .ticket-type {
        font-size: 1.5rem;
    }
    
    .ticket-price {
        font-size: 2.5rem;
    }
    
    /* Footer mobile */
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .footer-info {
        gap: 1.5rem;
        font-size: 0.85rem;
    }
}

/* Smartphones muito pequenos (até 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .hero-info {
        font-size: 0.9rem;
    }
}

/* Modo paisagem mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-info {
        flex-direction: row;
        gap: 1rem;
    }
}

/* ============================================
   ANIMAÇÕES DE SCROLL
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ARTIST CARDS COMO LINKS - NOVOS ESTILOS
   ============================================ */

/* Quando artist-card é um link */
a.artist-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

a.artist-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(184, 120, 27, 0.4);
}

a.artist-card:hover .artist-name {
    color: var(--cor-primaria);
}

/* Indicador visual de link (seta) */
a.artist-card::after {
    content: "→";
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--cor-primaria);
    opacity: 0;
    transition: all 0.3s ease;
}

a.artist-card:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

/* Cards sem link (artistas a anunciar) */
.artist-no-link {
    cursor: default;
}

.artist-no-link:hover {
    transform: translateY(-5px);
}



/* ============================================
   PUREFLEX VISUAL ENHANCEMENTS (added)
   ============================================ */

/* Spotlight effect on artist cards */
.artist-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(228,153,47,0.35), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.artist-card:hover::before {
    opacity: 1;
}

/* Focus effect: dim other artists when hovering the grid */
.artists-grid:hover .artist-card {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.artists-grid .artist-card:hover {
    opacity: 1;
}

/* Stronger glow on artist name */
.artist-card:hover .artist-name {
    text-shadow:
        0 0 10px var(--cor-primaria),
        0 0 20px var(--cor-secundaria);
}

/* Stage light sweep effect in lineup background */
.lineup::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(228,153,47,0.15), transparent 60%);
    animation: stageLightSweep 12s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes stageLightSweep {
    0% { transform: rotate(0deg) translateX(-20%); }
    50% { transform: rotate(180deg) translateX(20%); }
    100% { transform: rotate(360deg) translateX(-20%); }
}

/* ============================================
   STAGE LIGHT BEAMS
   ============================================ */

.lineup::after {
    content: "";
    position: absolute;
    inset: -50%;
    pointer-events: none;
    z-index: 0;

    background:
        linear-gradient(
            60deg,
            transparent 40%,
            rgba(228,153,47,0.18) 50%,
            transparent 60%
        ),
        linear-gradient(
            -60deg,
            transparent 40%,
            rgba(184,120,27,0.15) 50%,
            transparent 60%
        );

    animation: stageLights 18s linear infinite;
}

@keyframes stageLights {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}

