 /* CONFIGURAÇÕES GLOBAIS E VARIÁVEIS DE COR */
        :root {
            --cor-fundo: #0a0a0a; /* Preto/Cinza bem escuro */
            --cor-texto: #e0e0e0; /* Cinza claro para textos */
            --cor-destaque: #00FFFF; /* Azul Elétrico/Ciano Neon */
            --cor-destaque-hover: #9effff; /* Ciano mais claro no hover */
            --cor-botao-secundario: #BE00FF; /* Roxo Neon para o segundo botão */
            --cor-botao-secundario-hover: #D77FFF; /* Roxo mais claro no hover */
            --fonte-titulo: 'Rajdhani', sans-serif;
            --fonte-corpo: 'Poppins', sans-serif;
        }

        /* RESET BÁSICO */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--cor-fundo);
            color: var(--cor-texto);
            font-family: var(--fonte-corpo);
            line-height: 1.6;
            overflow-x: hidden; /* Evita scroll horizontal */
        }

        h1, h2, h3 {
            font-family: var(--fonte-titulo);
            text-transform: uppercase;
            color: white;
            letter-spacing: 2px;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        /* LINHA DEBAIXO DOS TÍTULOS */
        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--cor-destaque);
            margin: 8px auto 0;
        }

        section {
            padding: 100px 20px;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
        }
        
        /* CABEÇALHO E NAVEGAÇÃO */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 50px;
            background-color: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
        }

        .logo {
            font-family: var(--fonte-titulo);
            font-size: 2rem; /* Aumentado para se parecer mais com a imagem */
            color: white;
            text-decoration: none;
            font-weight: 700;
            letter-spacing: 4px; /* Aumentado o espaçamento */
            position: relative;
        }
        /* Detalhe do logo */
        .logo::after {
            content: '';
            display: inline-block;
            width: 25px; /* Largura do ícone */
            height: 25px; /* Altura do ícone */
            background-color: var(--cor-destaque); /* Cor do quadrado */
            -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path d="M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216ZM112,80a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8v96a8,8,0,0,1-8,8H120a8,8,0,0,1-8-8Z"/></svg>') no-repeat center / contain; /* Ícone de play */
            mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path d="M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216ZM112,80a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8v96a8,8,0,0,1-8,8H120a8,8,0,0,1-8-8Z"/></svg>') no-repeat center / contain;
            margin-left: 10px; /* Espaço entre o texto e o ícone */
            vertical-align: middle;
        }


        .nav-list {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .nav-link {
            color: var(--cor-texto); /* Cor de texto padrão para navegação */
            text-decoration: none;
            font-family: var(--fonte-corpo);
            font-weight: 700;
            font-size: 0.95rem; /* Um pouco maior */
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--cor-destaque);
        }

        /* SEÇÃO HERO (INÍCIO) */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column; /* Para alinhar o equalizador abaixo */
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            color: white;
            /* IMAGEM DE FUNDO - MUDE AQUI PARA A SUA IMAGEM */
            background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://yakoidj.com.br/img/yakoi-dj-hero-bg.jpg');
            background-size: cover;
            background-position: center;
            overflow: hidden; /* Para garantir que o equalizador não vaze */
        }

        .hero-content {
            padding-bottom: 80px; /* Espaço para o equalizador */
            position: relative;
            z-index: 10; /* Garante que o conteúdo fique acima do equalizador */
        }

        .hero-content h1 {
            font-size: 5rem;
            line-height: 1;
            margin-bottom: 20px; /* Espaço entre título e subtítulo */
            text-shadow: 0 0 15px rgba(0,255,255,0.5), 0 0 25px rgba(0,255,255,0.3); /* Efeito neon sutil */
        }
        /* O nome YAKOI DJ com a cor de destaque */
        .hero-content h1 {
            color: var(--cor-destaque);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin: 20px 0 30px;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px; /* Espaço entre os botões */
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border: 2px solid var(--cor-destaque);
            color: var(--cor-destaque);
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
            transition: background-color 0.3s, color 0.3s;
            border-radius: 3px; /* Bordas ligeiramente arredondadas */
        }

        .btn:hover {
            background-color: var(--cor-destaque);
            color: var(--cor-fundo);
        }

        /* Estilo para o segundo botão (preenchido) */
        .btn-secondary {
            background-color: var(--cor-botao-secundario);
            color: white; /* Cor do texto no botão secundário */
            border-color: var(--cor-botao-secundario);
        }

        .btn-secondary:hover {
            background-color: var(--cor-botao-secundario-hover);
            border-color: var(--cor-botao-secundario-hover);
            color: var(--cor-fundo);
        }

        /* Equalizador Visual no HERO */
        .equalizer {
            position: absolute;
            bottom: 30px;
            width: 70%;
            max-width: 600px;
            height: 60px; /* Altura do equalizador */
            display: flex;
            justify-content: space-between;
            align-items: flex-end; /* As barras começam de baixo */
            transform: translateY(20px); /* Ajuste vertical */
            opacity: 0.8;
        }

        .bar {
            width: 5px; /* Largura da barra */
            background: linear-gradient(to top, var(--cor-destaque), var(--cor-botao-secundario)); /* Gradiente de cor */
            margin: 0 1px;
            animation: equalize 1.2s ease-in-out infinite alternate;
        }
        /* Animação para cada barra */
        .bar:nth-child(1) { height: 30px; animation-delay: 0.1s; }
        .bar:nth-child(2) { height: 45px; animation-delay: 0.2s; }
        .bar:nth-child(3) { height: 20px; animation-delay: 0.3s; }
        .bar:nth-child(4) { height: 50px; animation-delay: 0.4s; }
        .bar:nth-child(5) { height: 35px; animation-delay: 0.5s; }
        .bar:nth-child(6) { height: 25px; animation-delay: 0.6s; }
        .bar:nth-child(7) { height: 40px; animation-delay: 0.7s; }
        .bar:nth-child(8) { height: 30px; animation-delay: 0.8s; }
        .bar:nth-child(9) { height: 55px; animation-delay: 0.9s; }
        .bar:nth-child(10) { height: 20px; animation-delay: 1.0s; }
        .bar:nth-child(11) { height: 45px; animation-delay: 1.1s; }
        .bar:nth-child(12) { height: 30px; animation-delay: 0.1s; }
        .bar:nth-child(13) { height: 50px; animation-delay: 0.2s; }
        .bar:nth-child(14) { height: 25px; animation-delay: 0.3s; }
        .bar:nth-child(15) { height: 40px; animation-delay: 0.4s; }
        .bar:nth-child(16) { height: 35px; animation-delay: 0.5s; }
        .bar:nth-child(17) { height: 55px; animation-delay: 0.6s; }
        .bar:nth-child(18) { height: 20px; animation-delay: 0.7s; }
        .bar:nth-child(19) { height: 45px; animation-delay: 0.8s; }
        .bar:nth-child(20) { height: 30px; animation-delay: 0.9s; }
        .bar:nth-child(21) { height: 50px; animation-delay: 1.0s; }
        .bar:nth-child(22) { height: 25px; animation-delay: 1.1s; }
        .bar:nth-child(23) { height: 40px; animation-delay: 1.2s; }
        .bar:nth-child(24) { height: 35px; animation-delay: 0.1s; }
        .bar:nth-child(25) { height: 55px; animation-delay: 0.2s; }


        @keyframes equalize {
            0% { height: 10px; }
            100% { height: 50px; }
        }


        /* SEÇÃO SOBRE */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap; /* Para responsividade */
        }
        .about-text {
            flex: 2;
        }
        .about-image {
            flex: 1;
            min-width: 250px; /* Para não ficar muito pequeno */
            text-align: center;
        }
        .about-image img {
            max-width: 300px;
            width: 100%;
            border-radius: 5px;
            border: 3px solid var(--cor-destaque);
        }

        /* SEÇÃO MÚSICA */
        .music-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Ajustado minmax */
            gap: 30px;
        }
        .set-card {
            background-color: #1a1a1a;
            border-radius: 5px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .set-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
        }
        .set-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        .set-info {
            padding: 20px;
        }
        .set-info h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .set-info a {
            color: var(--cor-destaque);
            text-decoration: none;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .set-info i {
            font-size: 1.2rem;
        }

        /* SEÇÃO EVENTOS */
        .event-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .event-item {
            display: flex;
            border-bottom: 1px solid #333;
            padding: 20px 0;
            align-items: center;
        }
        .event-item:last-child {
            border-bottom: none;
        }
        .event-date {
            flex: 0 0 120px;
            text-align: center;
        }
        .event-date span {
            display: block;
        }
        .event-day {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--cor-destaque);
        }
        .event-month {
            text-transform: uppercase;
        }
        .event-details {
            padding-left: 20px;
        }
        .event-details h3 {
            margin-bottom: 5px;
        }

        /* SEÇÃO CONTATO */
        #contato {
            text-align: center;
        }
        .contact-info p {
            max-width: 600px;
            margin: 0 auto 40px;
        }
        .contact-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            font-size: 1.2rem;
            flex-wrap: wrap; /* Para responsividade */
        }
        .contact-links a {
            color: var(--cor-texto);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s;
        }
        .contact-links a:hover {
            color: var(--cor-destaque);
        }
        .contact-links i {
            font-size: 2rem;
            color: var(--cor-destaque);
        }

        /* RODAPÉ */
        .footer {
            padding: 40px 20px;
            text-align: center;
            background-color: #000;
        }
        .social-links {
            margin-bottom: 20px;
        }
        .social-links a {
            color: var(--cor-texto);
            margin: 0 15px;
            font-size: 1.8rem;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: var(--cor-destaque);
        }

        /* RESPONSIVIDADE PARA CELULARES */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                padding: 15px;
            }
            .nav-list {
                margin-top: 15px;
                gap: 20px;
            }
            
            .hero-content h1 {
                font-size: 3rem;
            }
            
            section {
                padding: 60px 20px;
            }
            
            .about-content {
                flex-direction: column;
            }
            .about-image {
                margin-top: 30px;
            }
            
            .event-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .event-details {
                padding-left: 0;
                margin-top: 15px;
            }
            
            .contact-links {
                flex-direction: column;
                gap: 15px;
            }
            .equalizer {
                width: 90%;
            }
        }
         @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 80%;
                margin: 0 auto;
            }
            h2 {
                font-size: 2rem;
            }
        }