/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores */
    --color-dark-primary: #0a0a0a;
    --color-dark-secondary: #121212;
    --color-dark-tertiary: #1e1e1e;
    --color-purple-deep: #4b0082;
    --color-cyan-neon: #00e5ff;
    --color-gold: #d4af37;
    --color-crimson: #b30000;
    --color-rose-dust: #a67c7c;
    --color-rose-pastel: #e2c2c2;
    --color-white: #f8f8f8;
    --color-ethereal-silver: #e0e0e0;
    --color-vampire-red: #8b0000;
    --color-neon-red: #ff0000;
    --color-tech-blue: rgba(0, 229, 255, 0.2);
    --color-concrete: #2c2c2c;
    --color-concrete-light: #4a4a4a;
    
    /* Tipografia Refinada */
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Transições */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-dark-primary);
    color: var(--color-white);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 300;
}

/* Header e Navegação */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 0 8px var(--color-cyan-neon));
}

.logo h1 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--color-gold);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 5.5rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.hero-tagline {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--color-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 3.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Estampa Floral Gótico Pastel */
.floral-overlay {
    position: relative;
    /* Textura de renda gótica/floral que evoca o vampiresco e o delicado */
    background-image: url('https://www.transparenttextures.com/patterns/gothic-quarter.png'); 
    background-color: rgba(5, 5, 5, 0.98);
}

.floral-overlay::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradiente que transita do etéreo (prata/branco) para o sombrio (vermelho profundo/preto) */
    background: linear-gradient(135deg, rgba(224, 224, 224, 0.03) 0%, rgba(139, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}

/* Efeito de Névoa Etérea com Glitch Tecnológico */
.ethereal-mist {
    position: relative;
    overflow: hidden;
}

.ethereal-mist::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 200%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    animation: mistMove 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Circuito Sacro-Digital de Fundo */
.sacro-tech-bg {
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.05) 0%, transparent 70%),
        url('https://www.transparenttextures.com/patterns/circuit-board.png');
    background-blend-mode: overlay;
}

/* Texto de Código Místico */
.mystic-code {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--color-neon-red);
    opacity: 0.15;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animação de Pulso Sagrado - Suave e Contemplativa */
@keyframes sacredPulse {
    0% { 
        /* Sombra: Vermelho profundo com opacidade moderada */
        color: #8b0000;
        opacity: 0.5; 
        text-shadow: 0 0 15px rgba(139, 0, 0, 0.8), 
                     0 0 30px rgba(139, 0, 0, 0.4);
        font-weight: 300;
    }
    25% { 
        /* Transição suave para o meio */
        color: #d4a574;
        opacity: 0.7; 
        text-shadow: 0 0 20px rgba(212, 165, 116, 0.6), 
                     0 0 40px rgba(218, 165, 32, 0.3);
        font-weight: 300;
    }
    50% { 
        /* Luz: Branco puro com brilho máximo */
        color: #ffffff; 
        opacity: 1; 
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.8),
                     0 0 50px rgba(218, 165, 32, 0.6),
                     0 0 75px rgba(255, 215, 0, 0.3);
        font-weight: 400;
        letter-spacing: 1px;
    }
    75% { 
        /* Transição de volta para a sombra */
        color: #d4a574;
        opacity: 0.7; 
        text-shadow: 0 0 20px rgba(212, 165, 116, 0.6), 
                     0 0 40px rgba(218, 165, 32, 0.3);
        font-weight: 300;
    }
    100% { 
        /* Retorna à sombra */
        color: #8b0000;
        opacity: 0.5; 
        text-shadow: 0 0 15px rgba(139, 0, 0, 0.8), 
                     0 0 30px rgba(139, 0, 0, 0.4);
        font-weight: 300;
    }
}

.pulse-tech {
    animation: sacredPulse 10s ease-in-out infinite;
    /* Garante que o texto nunca fique completamente invisível */
    min-opacity: 0.5;
}

@keyframes mistMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Seção com Imagem Translúcida e Texto Vermelho */
.translucent-bg-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.translucent-bg-section::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Escurecimento maior */
    z-index: 1;
}

.translucent-content {
    position: relative;
    z-index: 2;
    color: var(--color-crimson);
    text-align: center;
}

.translucent-content p {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Overlay especifico para Karma */
.karma-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(139, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.translucent-content h2 {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 60px rgba(218, 165, 32, 0.4);
    animation: sacredPulse 10s ease-in-out infinite;
    letter-spacing: 8px;
}

/* Overlay para Lux Sonora Translucida */
.lux-overlay {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(139, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.lux-section-translucent {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 80vh;
}

/* Galeria de Fotos */
.gallery-grid, .music-grid, .collab-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Responsividade da Galeria */
@media (max-width: 1200px) {
    .gallery-grid, .music-grid, .collab-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .gallery-grid, .music-grid, .collab-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid, .music-grid, .collab-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.collab-caption {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-neon-red);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.collab-description {
    font-family: var(--font-primary);
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.8;
}padding: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(166, 124, 124, 0.2);
    transition: var(--transition-smooth);
    max-height: 400px;
}

@media (max-width: 768px) {
    .gallery-item {
        max-height: 300px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4) sepia(0.1) brightness(0.8);
    transition: var(--transition-smooth);
    display: block;
    max-width: 100%;
    height: auto;
    /* Otimização de performance */
    will-change: filter, transform;
    contain: layout style paint;
}

.gallery-item:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
}

.gallery-item::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 50%, rgba(10, 10, 10, 0.5) 100%);
    pointer-events: none;
}

/* Brutalismo Poético - Separadores e Blocos */
.brutal-divider {
    height: 20px;
    background: var(--color-concrete);
    border-left: 10px solid var(--color-crimson);
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.brutal-divider::after {
    content: "STRUCTURE // SOUL";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-secondary);
    font-size: 0.6rem;
    color: var(--color-ethereal-silver);
    letter-spacing: 3px;
    opacity: 0.5;
}

.brutal-card {
    background: var(--color-concrete);
    border: 4px solid var(--color-concrete-light);
    padding: 2rem;
    box-shadow: 10px 10px 0px var(--color-vampire-red);
    transition: var(--transition-smooth);
    position: relative;
}

.brutal-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px var(--color-neon-red);
}

.brutal-text-large {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 5rem;
    line-height: 0.8;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-ethereal-silver);
    opacity: 0.1;
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

/* Seções Gerais */
.section-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-ethereal-silver);
    text-shadow: 2px 2px 10px rgba(139, 0, 0, 0.8);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

/* Agenda e Eventos */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-item {
    background: var(--color-dark-secondary);
    padding: 3rem;
    border-left: 2px solid var(--color-gold);
    transition: var(--transition-smooth);
}

.event-item:hover {
    background: var(--color-dark-tertiary);
    transform: translateX(10px);
}

.event-item h3 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.instagram-embed-container {
    margin-top: 2rem;
    max-width: 540px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Botões */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-dark-primary);
}

.btn-secondary {
    border: 1px solid var(--color-white);
    color: var(--color-white);
    margin-left: 1rem;
}

.btn-primary:hover {
    background: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-dark-primary);
}

/* Footer */
.main-footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsividade Geral */
@media (max-width: 1200px) {
    section { padding: 6rem 0; }
    .section-title { font-size: 3rem; }
    .container { padding: 0 1.5rem; }
}

@media (max-width: 992px) {
    section { padding: 5rem 0; }
    .section-title { font-size: 2.8rem; }
    .hero-title { font-size: 4.5rem; }
    .brutal-text-large { font-size: 4rem; }
    .btn-secondary { margin-left: 0.5rem; }
}

@media (max-width: 768px) {
    section { padding: 4rem 0; }
    .hero-title { font-size: 3.5rem; }
    .section-title { font-size: 2.5rem; }
    .navbar { flex-direction: column; gap: 1.5rem; }
    .nav-links { gap: 1rem; font-size: 0.7rem; }
    .container { padding: 0 1rem; }
    .brutal-text-large { font-size: 3rem; }
    .btn-primary, .btn-secondary { padding: 0.8rem 1.5rem; font-size: 0.7rem; }
    .btn-secondary { margin-left: 0; margin-top: 0.5rem; }
    .event-item { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .hero-tagline { font-size: 0.8rem; }
    .hero-description { font-size: 0.9rem; }
    .section-title { font-size: 2rem; }
    .brutal-text-large { font-size: 2rem; }
    .translucent-content p { font-size: 1.3rem; }
    .container { padding: 0 0.8rem; }
    .btn-primary, .btn-secondary { padding: 0.7rem 1.2rem; font-size: 0.65rem; }
}
