/* ===== Variables ===== */
:root {
    --black: #000000;
    --dark-bg: #0a0a0a;
    --gold: #c9a227;
    --gold-light: #d4af37;
    --gold-gradient: linear-gradient(135deg, #c9a227 0%, #d4af37 50%, #b8860b 100%);
    --gold-border: linear-gradient(135deg, #c9a227, #d4af37, #b8860b, #c9a227);
    --white: #ffffff;
    --gray: #888888;
    --light-gray: #cccccc;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    position: relative;
    margin-bottom: 40px;
}

.preloader-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.preloader-circle svg {
    width: 100%;
    height: 100%;
    animation: preloader-rotate 2s linear infinite;
}

.preloader-ring {
    fill: none;
    stroke: url(#gold-gradient);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 280;
    stroke-dashoffset: 280;
    animation: preloader-dash 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.5));
}

@keyframes preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloader-dash {
    0% {
        stroke-dashoffset: 280;
    }
    50% {
        stroke-dashoffset: 70;
    }
    100% {
        stroke-dashoffset: 280;
    }
}

.preloader-text {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
    animation: preloader-pulse 1.5s ease-in-out infinite;
}

@keyframes preloader-pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 3px;
    animation: preloader-loading 2s ease forwards;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

@keyframes preloader-loading {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
    position: relative;
}

.gold-line {
    width: 100px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 0 auto 50px;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.5);
    position: relative;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--black);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: var(--black);
    overflow: hidden;
}

/* Hero Background Effects */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold);
    animation: float-particle 15s infinite;
    opacity: 0;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

/* Glow Orbs */
.glow-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: pulse-orb 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #b8860b 0%, transparent 70%);
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: 20%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes pulse-orb {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

/* Light Rays */
.light-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(201, 162, 39, 0.03) 10deg,
        transparent 20deg,
        transparent 40deg,
        rgba(201, 162, 39, 0.03) 50deg,
        transparent 60deg,
        transparent 80deg,
        rgba(201, 162, 39, 0.03) 90deg,
        transparent 100deg,
        transparent 120deg,
        rgba(201, 162, 39, 0.03) 130deg,
        transparent 140deg,
        transparent 160deg,
        rgba(201, 162, 39, 0.03) 170deg,
        transparent 180deg,
        transparent 200deg,
        rgba(201, 162, 39, 0.03) 210deg,
        transparent 220deg,
        transparent 240deg,
        rgba(201, 162, 39, 0.03) 250deg,
        transparent 260deg,
        transparent 280deg,
        rgba(201, 162, 39, 0.03) 290deg,
        transparent 300deg,
        transparent 320deg,
        rgba(201, 162, 39, 0.03) 330deg,
        transparent 340deg,
        transparent 360deg
    );
    animation: rotate-rays 60s linear infinite;
}

@keyframes rotate-rays {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Grid Overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }
    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

.hero-content {
    z-index: 10;
    position: relative;
    padding-top: 80px;
}

/* Logo Enhanced Styles */
.logo-container {
    margin-bottom: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-glow-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(var(--black), var(--black)) padding-box,
                var(--gold-gradient) border-box;
    animation: ring-pulse 3s ease-in-out infinite;
    opacity: 0.5;
}

.logo-glow-ring.ring-2 {
    width: 370px;
    height: 370px;
    animation-delay: 1.5s;
    opacity: 0.3;
}

@keyframes ring-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.logo-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 
        0 0 30px rgba(201, 162, 39, 0.3),
        0 0 60px rgba(201, 162, 39, 0.2),
        0 0 100px rgba(201, 162, 39, 0.1),
        inset 0 0 30px rgba(201, 162, 39, 0.1);
    animation: logo-glow 4s ease-in-out infinite, fadeInScale 1.5s ease forwards;
    overflow: hidden;
}

@keyframes logo-glow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(201, 162, 39, 0.3),
            0 0 60px rgba(201, 162, 39, 0.2),
            0 0 100px rgba(201, 162, 39, 0.1),
            inset 0 0 30px rgba(201, 162, 39, 0.1);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(201, 162, 39, 0.5),
            0 0 100px rgba(201, 162, 39, 0.3),
            0 0 150px rgba(201, 162, 39, 0.2),
            inset 0 0 50px rgba(201, 162, 39, 0.2);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: var(--gold-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.logo-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: logo-shine-move 4s ease-in-out infinite;
}

@keyframes logo-shine-move {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50%, 100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.logo-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.5));
    border-radius: 50%;
}

.logo-symbol {
    width: 100px;
    height: 100px;
    position: relative;
}

.letter-n {
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    clip-path: polygon(0 100%, 0 0, 25% 0, 25% 70%, 50% 30%, 50% 0, 75% 0, 100% 0, 100% 100%, 75% 100%, 75% 30%, 50% 70%, 50% 100%, 25% 100%);
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.5));
}

.logo-banda {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-lr;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 500;
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

/* Hero Title with Letter Animation */
.hero-title {
    font-size: 5rem;
    color: var(--gold);
    letter-spacing: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.title-letter {
    display: inline-block;
    animation: letterFadeIn 0.5s ease forwards;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 
        0 0 20px rgba(201, 162, 39, 0.5),
        0 0 40px rgba(201, 162, 39, 0.3),
        0 0 60px rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
}

.title-letter:hover {
    text-shadow: 
        0 0 30px rgba(201, 162, 39, 0.8),
        0 0 60px rgba(201, 162, 39, 0.5),
        0 0 100px rgba(201, 162, 39, 0.3);
    transform: translateY(-5px) scale(1.1);
}

.title-letter:nth-child(1) { animation-delay: 0.8s; }
.title-letter:nth-child(2) { animation-delay: 0.9s; }
.title-letter:nth-child(3) { animation-delay: 1.0s; }
.title-letter:nth-child(4) { animation-delay: 1.1s; }
.title-letter:nth-child(5) { animation-delay: 1.2s; }
.title-letter:nth-child(6) { animation-delay: 1.3s; }
.title-letter:nth-child(7) { animation-delay: 1.4s; }
.title-letter:nth-child(8) { animation-delay: 1.5s; }
.title-letter:nth-child(9) { animation-delay: 1.6s; }

@keyframes letterFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-glow-line {
    width: 200px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto 20px;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
    animation: line-glow 2s ease-in-out infinite, lineExpand 1s ease 1.7s forwards;
    transform: scaleX(0);
}

@keyframes lineExpand {
    to {
        transform: scaleX(1);
    }
}

@keyframes line-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(201, 162, 39, 0.8), 0 0 60px rgba(201, 162, 39, 0.4);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-gray);
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: 4px;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 2.3s forwards;
    margin-bottom: 150px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Buttons */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-primary.btn-glow {
    box-shadow: 
        0 0 20px rgba(201, 162, 39, 0.3),
        0 0 40px rgba(201, 162, 39, 0.1);
    animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(201, 162, 39, 0.3),
            0 0 40px rgba(201, 162, 39, 0.1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(201, 162, 39, 0.5),
            0 0 60px rgba(201, 162, 39, 0.2);
    }
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: btn-shine-move 3s ease-in-out infinite;
}

@keyframes btn-shine-move {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.btn-secondary.btn-glow {
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.1);
}

.btn-secondary.btn-glow:hover {
    box-shadow: 
        0 0 30px rgba(201, 162, 39, 0.4),
        0 0 60px rgba(201, 162, 39, 0.2);
}

/* Scroll Indicator Enhanced */
.scroll-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--gold);
    opacity: 0;
    animation: fadeIn 1s ease 3s forwards;
    z-index: 20;
}

.mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--gold);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-scroll 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

@keyframes mouse-scroll {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.scroll-arrows i {
    font-size: 0.7rem;
    animation: arrow-bounce 1.5s ease-in-out infinite;
    opacity: 0.5;
}

.arrow-1 {
    animation-delay: 0s;
}

.arrow-2 {
    animation-delay: 0.2s;
    margin-top: -5px;
}

@keyframes arrow-bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(5px);
        opacity: 1;
    }
}

/* Sound Waves */
.sound-waves {
    position: absolute;
    bottom: 0;
    left: 50px;
    height: 80px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 6px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

.wave {
    width: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    animation: wave-dance 1s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

.wave-1 { height: 30px; animation-delay: 0s; }
.wave-2 { height: 50px; animation-delay: 0.1s; }
.wave-3 { height: 70px; animation-delay: 0.2s; }
.wave-4 { height: 50px; animation-delay: 0.3s; }
.wave-5 { height: 30px; animation-delay: 0.4s; }

@keyframes wave-dance {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.5);
    }
}

/* ===== Sections ===== */
.section {
    padding: 80px 0 100px 0;
    scroll-margin-top: 80px;
}

/* ===== Sobre Section ===== */
.sobre {
    background: var(--dark-bg);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sobre-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 2px solid var(--gold);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--gold);
}

.sobre-image .image-placeholder i {
    font-size: 4rem;
}

.sobre-text h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.sobre-text p {
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cinzel', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Membros Section ===== */
.membros {
    background: var(--black);
}

.membros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.membro-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--dark-bg);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.membro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.1), transparent);
    transition: 0.5s;
}

.membro-card:hover::before {
    left: 100%;
}

.membro-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(201, 162, 39, 0.2),
        inset 0 0 30px rgba(201, 162, 39, 0.05);
}

.membro-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 2px solid var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.2);
}

.membro-card:hover .membro-image {
    box-shadow: 
        0 0 30px rgba(201, 162, 39, 0.4),
        0 0 60px rgba(201, 162, 39, 0.2);
    transform: scale(1.05);
}

.membro-image i {
    font-size: 3rem;
    color: var(--gold);
}

.membro-card h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.membro-card p {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ===== Música Section ===== */
.musica {
    background: var(--dark-bg);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.album-card {
    text-align: center;
}

.album-cover {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 2px solid var(--gold);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.1);
}

.album-cover:hover {
    box-shadow: 
        0 0 40px rgba(201, 162, 39, 0.3),
        0 0 80px rgba(201, 162, 39, 0.1);
    border-color: var(--gold-light);
}

.album-cover i {
    font-size: 5rem;
    color: var(--gold);
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.3));
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.album-cover:hover .album-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.play-btn i {
    font-size: 1.5rem;
    color: var(--black);
    margin-left: 5px;
}

.play-btn:hover {
    transform: scale(1.1);
}

.album-card h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.album-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

.streaming-links {
    text-align: center;
}

.streaming-links h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.platforms {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.platform-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.platform-link:hover {
    background: var(--gold);
    color: var(--black);
}

/* ===== Eventos Section ===== */
.eventos {
    background: var(--black);
}

.eventos-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.evento-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 30px;
    background: var(--dark-bg);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.evento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold-gradient);
    transition: height 0.3s ease;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.evento-card:hover::before {
    height: 100%;
}

.evento-card:hover {
    border-color: var(--gold);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(201, 162, 39, 0.1);
    transform: translateX(10px);
}

.evento-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    background: var(--gold-gradient);
    border-radius: 10px;
    min-width: 100px;
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
    transition: var(--transition);
}

.evento-card:hover .evento-date {
    box-shadow: 
        0 0 40px rgba(201, 162, 39, 0.5),
        0 0 60px rgba(201, 162, 39, 0.3);
    transform: scale(1.05);
}

.evento-date .day {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.evento-date .month {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
}

.evento-date .year {
    font-size: 0.8rem;
    color: var(--black);
}

.evento-info {
    flex: 1;
}

.evento-info h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.evento-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.evento-info i {
    color: var(--gold);
    margin-right: 10px;
}

/* ===== Galeria Section ===== */
.galeria {
    background: var(--dark-bg);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.galeria-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
}

.galeria-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 2px solid var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.galeria-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(201, 162, 39, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.galeria-item:hover .galeria-placeholder::before {
    animation: galeria-shine 1s ease;
}

@keyframes galeria-shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 1;
    }
}

.galeria-placeholder i {
    font-size: 3rem;
    color: var(--gold);
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.3));
    transition: var(--transition);
}

.galeria-item:hover .galeria-placeholder {
    border-color: var(--gold-light);
    box-shadow: 
        0 0 30px rgba(201, 162, 39, 0.3),
        inset 0 0 30px rgba(201, 162, 39, 0.1);
}

.galeria-item:hover .galeria-placeholder i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.5));
}

/* ===== Contacto Section ===== */
.contacto {
    background: var(--black);
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contacto-info h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contacto-info > p {
    color: var(--light-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--light-gray);
}

.info-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-links a:hover::before {
    transform: scale(1);
}

.social-links a:hover {
    color: var(--black);
    box-shadow: 
        0 0 20px rgba(201, 162, 39, 0.4),
        0 0 40px rgba(201, 162, 39, 0.2);
    transform: translateY(-5px);
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--dark-bg);
    border: 1px solid #333;
    border-radius: 5px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 
        0 0 15px rgba(201, 162, 39, 0.2),
        inset 0 0 10px rgba(201, 162, 39, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 20px;
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo .logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.footer-logo p {
    color: var(--gray);
    margin-top: 10px;
}

.footer-links h4,
.footer-newsletter h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--gray);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: var(--black);
    border: 1px solid #333;
    border-radius: 5px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 5px;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .sobre-content {
        grid-template-columns: 1fr;
    }

    .membros-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacto-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .logo-circle {
        width: 180px;
        height: 180px;
    }

    .logo-symbol {
        width: 70px;
        height: 70px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .membros-grid {
        grid-template-columns: 1fr;
    }

    .albums-grid {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .evento-card {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .platforms {
        flex-wrap: wrap;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }
}
