:root {
    --bg-color: #030303;
    --text-color: #F2F2F2;
    --text-muted: #888888;
    --accent: #E53935;
    --accent-dark: #B71C1C;
    --surface: #0A0A0A;
    --surface-light: #1A1A1A;
    --border: #222222;
    
    --font-main: 'Inter', sans-serif;

    /* Metallic Gradients - Vibrantes */
    --silver-gradient: linear-gradient(to bottom, #bdbdbd 0%, #ffffff 25%, #e0e0e0 50%, #9e9e9e 75%, #bdbdbd 100%);
    --red-metallic-gradient: linear-gradient(to bottom, #ff0000 0%, #ff8a80 50%, #ff0000 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Grain Overlay for editorial texture */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Subtle Circus Tent Stripes */
.tent-stripes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0) 0px,
        rgba(0, 0, 0, 0) 40px,
        rgba(229, 57, 53, 0.02) 40px, /* extremely subtle red */
        rgba(229, 57, 53, 0.02) 80px
    );
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

.text-center {
    text-align: center;
}

/* Typography */
h1, h2, h3 {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

/* Lightbulb Header Effect (Vintage Circus Sign) */
.lightbulb-header::before,
.lightbulb-header::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent);
    box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
    animation: pulse 2s infinite alternate;
}

.lightbulb-header::before { left: -30px; }
.lightbulb-header::after { right: -30px; }

@keyframes pulse {
    0% { opacity: 0.5; box-shadow: 0 0 5px var(--accent); }
    100% { opacity: 1; box-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent); }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.curtain {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: url('loading-bg.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.curtain.left {
    left: 0;
    border-right: 2px solid rgba(0,0,0,0.2);
}

.curtain.right {
    right: 0;
    border-left: 2px solid rgba(0,0,0,0.2);
}

.loader-content {
    position: relative;
    z-index: 10001;
    text-align: center;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.loader-face {
    width: clamp(150px, 20vw, 250px);
    margin-bottom: 2rem;
    animation: pulse-loader 1s infinite alternate ease-in-out;
}

.loader-text {
    font-size: 0.9rem;
    letter-spacing: 6px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

@keyframes pulse-loader {
    0% { transform: scale(1); filter: brightness(1); }
    100% { transform: scale(1.05); filter: brightness(1.3); }
}

/* State when loading is done */
#preloader.done .curtain.left { transform: translateX(-100%); }
#preloader.done .curtain.right { transform: translateX(100%); }
#preloader.done .loader-content { opacity: 0; transform: scale(0.2); }

/* Sound Toggle Professional */
.sound-toggle {
    position: fixed;
    top: 2rem;
    right: 5vw;
    z-index: 100;
    background: transparent;
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    mix-blend-mode: difference;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .sound-toggle {
        top: 1rem;
        right: 1.5rem;
        font-size: 0.7rem;
        padding: 0.5rem;
        background: rgba(0,0,0,0.5);
        border-radius: 50px;
        backdrop-filter: blur(5px);
        mix-blend-mode: normal;
    }
}

.sound-bars {
    display: flex;
    gap: 3px;
    height: 15px;
    align-items: flex-end;
}

.bar {
    width: 3px;
    background-color: var(--text-color);
    height: 3px;
    transition: height 0.2s ease;
}

.sound-toggle.playing .bar:nth-child(1) { animation: bounce 1s infinite ease-in-out alternate; }
.sound-toggle.playing .bar:nth-child(2) { animation: bounce 1.2s infinite ease-in-out alternate-reverse; }
.sound-toggle.playing .bar:nth-child(3) { animation: bounce 0.8s infinite ease-in-out alternate; }

@keyframes bounce {
    0% { height: 3px; }
    100% { height: 15px; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 5vw;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    z-index: 10;
}

.overline {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 10rem);
    white-space: nowrap;
    margin-bottom: 1rem;
}

.hero-title .silver {
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.hero-title .red-metal {
    background: var(--red-metallic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-muted);
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.album-cover {
    width: 100%;
    max-width: 600px;
    border-radius: 4px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.8));
    position: relative;
    z-index: 2;
}

.brand-logo {
    position: absolute;
    width: 80%;
    opacity: 0.15;
    z-index: 1;
    mix-blend-mode: screen;
}

/* Floating Parallax Assets */
.floating-asset {
    position: absolute;
    pointer-events: none;
    z-index: 15; /* Above background, but can overlap content subtly */
    will-change: transform;
    mix-blend-mode: hard-light;
}

.asset-1 { top: 5%; left: -5%; width: clamp(200px, 20vw, 400px); opacity: 0.7; transform: rotate(-15deg); }
.asset-2 { top: 35%; right: 2%; width: clamp(150px, 15vw, 300px); opacity: 0.5; transform: rotate(10deg); }
.asset-3 { top: 65%; right: -5%; width: clamp(250px, 25vw, 500px); opacity: 0.4; transform: rotate(20deg); }
.asset-4 { top: 85%; left: 5%; width: clamp(150px, 15vw, 250px); opacity: 0.8; transform: rotate(-25deg); }

.asset-5 { top: 120%; left: -2%; width: clamp(200px, 22vw, 450px); opacity: 0.5; transform: rotate(15deg); }
.asset-6 { top: 160%; right: 5%; width: clamp(100px, 12vw, 200px); opacity: 0.6; transform: rotate(-10deg); }
.asset-7 { top: 210%; left: -10%; width: clamp(300px, 30vw, 600px); opacity: 0.3; transform: rotate(-30deg); }
.asset-8 { top: 260%; right: 10%; width: clamp(150px, 18vw, 350px); opacity: 0.5; transform: rotate(5deg); }

.floating-asset.blur { filter: blur(6px) drop-shadow(0 0 20px rgba(255,0,0,0.3)); }
.floating-asset.blur-heavy { filter: blur(15px) drop-shadow(0 0 30px rgba(255,0,0,0.5)); }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 5vw;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.scroll-indicator .line {
    width: 50px;
    height: 1px;
    background: var(--text-color);
}

/* Section Backgrounds (Blur & Gradient) */
section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(25px) brightness(0.25) saturate(1.2);
    transform: scale(1.1); /* Prevent blur light bleeding on edges */
    will-change: transform;
}

section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, var(--bg-color) 0%, transparent 15%, transparent 85%, var(--bg-color) 100%);
}

/* Manifesto Section - New Editorial Design */
.manifesto {
    padding: 180px 0;
    position: relative;
}

.manifesto::before {
    background-image: url('bg1.jpg');
    opacity: 0.4;
}

.manifesto-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-label {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 5px;
    margin-bottom: 3rem;
}

.manifesto-content {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-color);
    text-transform: uppercase;
}

.manifesto-content span {
    display: block;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.manifesto-content .highlight {
    background: var(--red-metallic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.manifesto-content .muted {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: normal;
    max-width: 700px;
    margin: 3rem auto;
    line-height: 1.6;
}

.fire-quote {
    font-size: clamp(3rem, 8vw, 8rem);
    background: var(--red-metallic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 5rem;
    line-height: 0.9;
    letter-spacing: -2px;
}

/* Circus Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: var(--accent-dark);
    padding: 1.5rem 0;
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    position: relative;
    z-index: 10;
    display: flex;
    box-shadow: 0 0 30px rgba(229, 57, 53, 0.2);
}

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

.marquee-content span {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff3333; /* Vermelho vibrante limpo */
    letter-spacing: 4px;
    padding-right: 50px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

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

/* Stats Bento Grid */
.stats {
    padding: 150px 0;
}
.stats::before {
    background-image: url('bg2.jpg');
}

.section-header {
    margin-bottom: 4rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
}

.text-center.section-header p {
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.bento-item {
    background-color: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.bento-item:hover {
    background-color: rgba(26, 26, 26, 0.8);
    border-color: rgba(255,255,255,0.2);
}

.bento-item.main-stat {
    grid-column: span 2;
    background-color: rgba(183, 28, 28, 0.6); /* --accent-dark with opacity */
    border: 1px solid rgba(229, 57, 53, 0.3);
}

.bento-item.main-stat:hover {
    background-color: rgba(229, 57, 53, 0.8); /* --accent with opacity */
}

.bento-item .icon-wrapper {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.social-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.bento-item.main-stat .social-icon {
    width: 48px;
    height: 48px;
    color: #1DB954; /* Spotify Green */
}

.bento-item:hover .social-icon {
    transform: scale(1.1) rotate(-5deg);
}

.bento-item .number {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bento-item .label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
}

/* Sponsorship Tiers */
.sponsorship {
    padding: 150px 0;
}
.sponsorship::before {
    background-image: url('bg3.jpg');
}

.tiers-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.tier-card {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.15); /* Dashed border for ticket look */
    padding: 4rem;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Vintage Ticket Cutouts */
.ticket-shape::before,
.ticket-shape::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--bg-color); /* Match background to look like a cutout */
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8); /* Depth for the cutout */
    z-index: 5;
}

.ticket-shape::before {
    left: -20px;
    border-right: 2px dashed rgba(255,255,255,0.15);
}

.ticket-shape::after {
    right: -20px;
    border-left: 2px dashed rgba(255,255,255,0.15);
}

.tier-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.tier-header h3 {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.tier-header .price {
    font-size: 3rem;
    font-weight: 900;
}

.tier-benefits {
    list-style: none;
    flex-grow: 1;
}

.tier-benefits li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1.1rem;
    color: #ccc;
    position: relative;
    padding-left: 2rem;
}

.tier-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.tier-card.premium {
    background-color: rgba(26, 26, 26, 0.8);
    border-color: rgba(229, 57, 53, 0.4);
}

.tier-card.premium.ticket-shape::before,
.tier-card.premium.ticket-shape::after {
    border-color: rgba(229, 57, 53, 0.4);
}

.premium-label {
    position: absolute;
    top: 0;
    right: 4rem;
    transform: translateY(-50%);
    background: var(--red-metallic-gradient);
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(183, 28, 28, 0.4);
}

/* CTA */
.cta {
    padding: 200px 0;
}
.cta::before {
    background-image: url('bg4.jpg');
}

.cta h2 {
    font-size: clamp(3rem, 7vw, 7rem);
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-block;
    background: var(--red-metallic-gradient);
    color: #fff;
    text-decoration: none;
    padding: 1.5rem 4rem;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    border-radius: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(183, 28, 28, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(183, 28, 28, 0.5);
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.signature {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.signature a {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    transition: color 0.3s ease;
}

.signature a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .manifesto-grid {
        grid-template-columns: 1fr;
    }
    
    .anjim-face {
        display: none;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .bento-item.main-stat {
        grid-column: span 1;
    }
    
    .tiers-container {
        grid-template-columns: 1fr;
    }
    
    .tier-card {
        padding: 2rem;
    }
}
