/* 
   FIRE UP PAGE STYLES — Brutalist & Tech / Youth Theme
   Aesthetics: High Energy, Neon Fire (Orange/Red), Dark Mode, Marquees
*/

:root {
    --fire-main: #FF3B30; /* Neon Red */
    --fire-accent: #FF9500; /* Neon Orange */
    --fire-glow: rgba(255, 59, 48, 0.4);
    --fire-bg: #070303; /* Extremely dark, barely red-tinted black */
    --fire-surface: rgba(255, 255, 255, 0.03);
    --font-heading: 'Inter', sans-serif; /* Fallback, assumes site has it or uses default sans-serif */
}

/* --- Base Override for Fire Up Page --- */
.fireup-page {
    background-color: var(--fire-bg) !important;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Header & Nav Overrides for Dark Theme */
.fireup-page header {
    background: rgba(7, 3, 3, 0.85) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 59, 48, 0.15);
}

.fireup-page nav ul li a {
    color: #fff !important;
}

.fireup-page .dropdown-menu {
    background: #0d0606 !important;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.fireup-page .dropdown-menu li a {
    color: #ccc !important;
}

.fireup-page .dropdown-menu li a:hover {
    color: var(--fire-accent) !important;
    background: rgba(255, 59, 48, 0.1) !important;
}

/* --- Hero Section Imersiva --- */
#fireup-hero {
    position: relative;
    height: auto; /* Permite crescer com o texto */
    min-height: 100vh;
    padding: 150px 0 100px; /* Espaço para o cabeçalho e margem de respiro */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Background gradient removido para exibir o GIF */
}

.hero-bg-gif {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    opacity: 0.6; /* GIF aparente mas não estourado */
    filter: grayscale(30%) contrast(120%);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 3, 3, 0.7) 0%, rgba(255, 59, 48, 0.25) 60%, var(--fire-bg) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(rgba(255, 149, 0, 0.2) 2px, transparent 2px);
    background-size: 100px 100px;
    animation: floatingParticles 40s linear infinite;
    opacity: 0.5;
}

@keyframes floatingParticles {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

.fireup-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fireup-logo {
    max-width: 350px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 30px rgba(255, 59, 48, 0.5));
    animation: floatLogo 6s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
    position: relative;
    letter-spacing: -2px;
}

.hero-title::before {
    content: 'FIRE UP';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    -webkit-text-stroke: 0;
    mask-image: linear-gradient(transparent 40%, white 80%);
    -webkit-mask-image: linear-gradient(transparent 40%, white 80%);
    opacity: 0.8;
}

.hero-title-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--fire-main), var(--fire-accent));
    filter: blur(40px);
    opacity: 0.3;
    z-index: -1;
}

/* Bloco de texto "Massa" (Glassmorphism) */
.hero-text-glass {
    margin-top: 40px;
    background: rgba(7, 3, 3, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 20px;
    padding: 40px 50px;
    max-width: 900px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(255, 59, 48, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.hero-text-glass:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 59, 48, 0.6);
}

.hero-text-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--fire-main), var(--fire-accent));
    box-shadow: 0 0 15px var(--fire-main);
}

.hero-text-glass p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    margin: 0;
    text-align: justify;
}

/* --- Marquee (Letreiro em Movimento) --- */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--fire-main);
    color: #000;
    padding: 15px 0;
    z-index: 5;
    transform: rotate(-2deg) scale(1.05); /* Angled for dynamic impact */
    margin: -30px 0 80px 0;
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.3);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-content span {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 0 30px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.marquee-content span i {
    margin: 0 15px;
    font-size: 1.2rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Halfway because text is duplicated */
}

/* --- Seção Identidade e Ticket VIP --- */
#fireup-about {
    padding: 100px 0;
    position: relative;
    z-index: 4;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.about-text-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.glass-block {
    background: var(--fire-surface);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--fire-main), var(--fire-accent));
}

.glass-block:hover {
    transform: translateX(10px);
    border-color: rgba(255, 59, 48, 0.3);
}

.glass-block h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.glass-block p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* --- VIP Ticket Card --- */
.vip-ticket-wrapper {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.vip-ticket {
    background: linear-gradient(135deg, #1a0808 0%, #0d0404 100%);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255, 59, 48, 0.2);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.vip-ticket:hover {
    transform: rotateY(-10deg) rotateX(5deg) translateY(-10px);
    box-shadow: 0 40px 80px rgba(255, 59, 48, 0.2), inset 0 0 0 1px rgba(255, 59, 48, 0.4);
}

/* Glow behind ticket */
.vip-ticket::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 50% 50%, var(--fire-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vip-ticket:hover::before {
    opacity: 1;
}

.ticket-header {
    border-bottom: 2px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 25px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-header h4 {
    font-size: 1.2rem;
    color: var(--fire-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
}

.ticket-icon {
    background: rgba(255, 59, 48, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--fire-main);
}

.ticket-body h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1;
}

.ticket-body p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-fire {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: linear-gradient(90deg, var(--fire-main), var(--fire-accent));
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-fire:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 59, 48, 0.4);
}

/* --- Holographic Banners Base (from Premium UI) --- */
.holographic-section {
    background: transparent;
    padding: 100px 0;
}

.holographic-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.holo-banner {
    background: #110505;
    border: 1px solid rgba(255, 59, 48, 0.15);
    border-radius: var(--radius-lg, 16px);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.holo-banner:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 59, 48, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 40px rgba(255, 59, 48, 0.15);
}

.holo-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.2) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    transition: all 0.6s ease;
    pointer-events: none;
}

.holo-banner:hover .holo-glow {
    transform: scale(1.5) translate(-20px, 20px);
    background: radial-gradient(circle, rgba(255, 149, 0, 0.25) 0%, transparent 70%);
}

.holo-content {
    position: relative;
    z-index: 2;
}

.holo-icon {
    font-size: 2.5rem;
    color: var(--fire-main);
    margin-bottom: 25px;
    background: rgba(255, 59, 48, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.holo-banner h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.holo-banner p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.btn-saiba-mais-neon {
    color: var(--fire-accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.btn-saiba-mais-neon::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--fire-main);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--fire-main);
}

.holo-banner:hover .btn-saiba-mais-neon::after {
    width: 100%;
}

/* --- Responsiveness --- */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: clamp(3rem, 15vw, 6rem);
    }
    
    .holographic-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .marquee-wrapper {
        transform: rotate(0) scale(1);
        margin: 0 0 50px 0;
    }
    
    .fireup-logo {
        max-width: 250px;
    }
    
    .glass-block {
        padding: 30px 20px;
    }
    
    .holographic-container {
        grid-template-columns: 1fr;
    }
}
