/* ==========================================================================
   🏛️ Portal Vibracional - SANTUÁRIO CENTRAL DE ESTILIZAÇÃO (CSS GLOBAL) 🏛️
   --------------------------------------------------------------------------
   ⚠️ ALERTA PARA IA/CO-CRIADOR: ESTE ARQUIVO É A BASE IMUTÁVEL.
   
   ❌ NÃO ALTERAR NADA QUE JÁ ESTEJA ESCRITO.
   ❌ NÃO APAGAR NADA.
   ❌ NÃO REESCREVER CLASSES EXISTENTES.
   
   ✅ INSTRUÇÃO: Este arquivo de 1212 linhas contém a geometria sagrada e a 
      responsividade mobile (360x800) já homologadas. Qualquer nova 
      estilização deve ser ACRESCENTADA AO FINAL ou feita em arquivo separado.
      
   "A ordem sustenta a beleza; a base sustenta a visão." 🌌✨
  ==========================================================================
*/

.particle-container {
    position: fixed; /* Fixa na tela toda, mesmo ao rolar a página */
    top: 0;
    left: 0;
    width: 100vw; /* Largura total da visão */
    height: 100vh; /* Altura total da visão */
    z-index: -1; 
    pointer-events: none;
    background: var(--cor-base);
}

.particle {

    position: absolute;
    /* background: var(--brilho-cristal);  <-- COMENTE OU REMOVA ESTA LINHA */
    border-radius: 1px;
    pointer-events: none;
    top: 0;
    left: 0;
    will-change: transform;
    
    /* O TRUQUE DO LOSANGO: */
    transform: rotate(45deg); 
}

@keyframes subir {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 0.7; }
    100% { transform: translateY(-110vh); opacity: 0; }
}

.show-instruction {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dourado);
    color: var(--azul-noturno);
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: var(--glow-dourado);
    z-index: 10000;
    font-weight: 600;
    animation: fadeInOut 4s ease-in-out forwards;
}

        
        /* ═══════════════════════════════════════════════════════════════
           🌌 PALETA GALÁXIA - CORES CÓSMICAS
           ═══════════════════════════════════════════════════════════════ */
        :root {
            /* Cores Primárias */
        
            --cor-base: #1a0b2e; /* Seu roxo quase preto */
            --brilho-cristal: #e0b0ff; /* Um lilás clarinho ou branco brilhante */
            --branco-perola: #E0E0E0;
            --roxo-profundo: #6A0DAD;
            --lilas: #C8A2C8;
            --dourado: #FFD700;
            --roxo-escuro: #0c0114;
            --preto-fundo: #121212;

            /* Cores Secundárias */
            --azul-noturno: #1A1A4D;
            --violeta: #8A2BE2;
            --prateado: #C0C0C0;

            /* Gradientes Nebulosa */
            --nebula-gradient: linear-gradient(135deg, #1A1A4D 0%, #6A0DAD 50%, #000000 100%);
            --nebula-radial: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.4) 0%, transparent 70%);

            /* Efeitos Luminosos */
            --glow-dourado: 0 0 20px rgba(255, 215, 0, 0.6);
            --glow-violeta: 0 0 25px rgba(138, 43, 226, 0.8);
            --glow-prateado: 0 0 15px rgba(192, 192, 192, 0.5);
        }

        /* ═══════════════════════════════════════════════════════════════
           🌠 RESET E CONFIGURAÇÕES GLOBAIS
           ═══════════════════════════════════════════════════════════════ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--azul-noturno);
            color: var(--branco-perola);
            line-height: 1.7;
            overflow-x: hidden;
            position: relative;
        }

        /* Fundo de Galáxia Animado */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--nebula-gradient);
            z-index: -2;
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(2px 2px at 20% 30%, white, transparent),
                radial-gradient(2px 2px at 60% 70%, rgba(255, 215, 0, 0.8), transparent),
                radial-gradient(1px 1px at 50% 50%, rgba(192, 192, 192, 0.6), transparent),
                radial-gradient(1px 1px at 80% 10%, white, transparent),
                radial-gradient(2px 2px at 90% 60%, rgba(138, 43, 226, 0.7), transparent);
            background-size: 200% 200%;
            animation: stars-twinkle 8s ease-in-out infinite;
            z-index: -1;
            pointer-events: none;
        }

        @keyframes stars-twinkle {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.7;
                transform: scale(1.1);
            }
        }

        /* ═══════════════════════════════════════════════════════════════
           🌟 HEADER E NAVEGAÇÃO
           ═══════════════════════════════════════════════════════════════ */
        header {
            position: sticky;
            top: 0;
            z-index: 10000;
            background: var(--preto-fundo);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--violeta);
            box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dourado);
            text-shadow: var(--glow-dourado);
            text-decoration: none;
            display: inline-flex;
            align-items: flex-start;
            gap: 0.5rem;
            position:relative; left:-2.5rem;

        }

        .nav-items {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .nav-items a {
            color: var(--prateado);
            text-decoration: none;
            font-weight: 800;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-items a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--dourado);
            transition: width 0.3s ease;
        }

        .nav-items a:hover {
            color: var(--dourado);
            text-shadow: var(--glow-dourado);
        }

        .nav-items a:hover::after {
            width: 100%;
        }

        /* Menu toggle (mobile) */
        .menu-toggle {
            display: none;
            background: none;
            border: 2px solid transparent;
            color: var(--dourado);
            font-size: 1.25rem;
            padding: 0.5rem 0.75rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .menu-toggle:focus {
            outline: 2px solid var(--dourado);
            box-shadow: var(--glow-dourado);
        }

        /* Frequency player styles */
        .frequency-player {
            display: flex;
            gap: 1rem;
            align-items: center;
            justify-content: center;
            margin-top: 1rem;
        }
        .btn-play-frequency {
            background: linear-gradient(135deg, var(--violeta), var(--roxo-profundo));
            color: var(--dourado);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            border: none;
            cursor: pointer;
        }
        .btn-play-frequency:focus { outline: 2px solid var(--dourado); }
        
        .audio-controls {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: center;
        }
        
        .mode-selector {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--branco-perola);
        }
        
        .mode-selector select {
            background: var(--preto-fundo);
            color: var(--branco-perola);
            border: 1px solid var(--violeta);
            border-radius: 4px;
            padding: 0.25rem;
        }
        
        .btn-instructions {
            background: linear-gradient(135deg, var(--dourado), var(--prateado));
            color: var(--roxo-profundo);
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .btn-instructions:hover {
            transform: scale(1.05);
        }

        @media (max-width: 880px) {
            .menu-toggle { display: inline-flex; align-items:center; gap:.5rem; }
            .nav-items {
                position: absolute;
                top: 68px;
                right: 1rem;
                background: rgba(26,26,77,0.98);
                flex-direction: column;
                gap: 0;
                padding: 1rem;
                min-width: 240px;
                display: none;
                border-radius: 12px;
            }
            .nav-items.open { display: flex; }
            .nav-items a { padding: 0.5rem 1rem; display:block; }
            .dropdown-content { position: static; border:none; box-shadow:none; display:none; }
            .dropdown:focus-within .dropdown-content, .dropdown:hover .dropdown-content { display:block; }
        }

        /* Dropdown Menu Styles */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background: rgba(26, 26, 77, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid var(--violeta);
            border-radius: 8px;
            min-width: 200px;
            box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3);
            z-index: 1000;
            padding: 0.5rem 0;
        }

        .dropdown-content a {
            color: #ffffff;
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            border: none;
        }

        .dropdown-content a:hover {
            background: rgba(138, 43, 226, 0.2);
            color: var(--dourado);
            text-shadow: var(--glow-dourado);
        }

        /* Estilos específicos para botões de acessibilidade no dropdown */
        .dropdown-content button {
            background: none;
            border: none;
            color: var(--branco-perola);
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            cursor: pointer;
            width: 100%;
            text-align: left;
            font-size: 1rem;
            font-weight: 500;
        }

        .dropdown-content button:hover {
            background: rgba(138, 43, 226, 0.2);
            color: var(--dourado);
            text-shadow: var(--glow-dourado);
        }

        .dropdown-content button:focus {
            outline: 2px solid var(--dourado);
            background: rgba(138, 43, 226, 0.2);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropbtn {
            background: none;
            border: none;
            cursor: pointer;
            font-weight: 500;
            color: var(--lilas);
            text-decoration: none;
            position: relative;
        }

        .dropbtn::after {
            content: ' ▼';
            font-size: 0.8rem;
            margin-left: 0.5rem;
        }

        .dropbtn:hover {
            color: var(--dourado);
            text-shadow: var(--glow-dourado);
        }

        /* Botão Portal Nutricional (volta) */
        .btn-portal-nutricional, .btn-encontre-terapeuta {
            background: var(--preto-fundo);
            color: var(--dourado);
            padding: 0.75rem 1.5rem;
            border-radius: 0px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            border-image: linear-gradient(135deg, var(--violeta), var(--roxo-profundo)) 1;
            box-shadow: var(--glow-violeta);
        }

        .btn-portal-nutricional:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(138, 43, 226, 0.8);
        }

        /* Botão LumiNah (volta) */
        .btn-luminah {
            background: var(--preto-fundo);
            color: var(--dourado);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #FFD700;
            box-shadow: var(--glow-dourado);
        }

        .btn-luminah:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
            background: #FFC107; /* Tom ligeiramente mais escuro no hover */
        }




        /* Botão do player 528Hz no navbar */
        .btn-frequency-nav {
            background: transparent;
            color: var(--dourado);
            border: 1px solid rgba(255,215,0,0.12);
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: transform .15s ease, background .15s ease;
        }
        .btn-frequency-nav[aria-pressed="true"] {
            background: linear-gradient(135deg, var(--violeta), var(--roxo-profundo));
            color: var(--dourado);
            box-shadow: var(--glow-violeta);
            transform: scale(1.02);
        }

        /* Utilitário para leitores de tela (status) */
        .visually-hidden {
            position: absolute !important;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0 0 0 0);
            white-space: nowrap;
            border: 0;
        }

        /* Botão padrão para Curadoria (afiliados / links de apoio) */
        .btn-curadoria {
            background: linear-gradient(135deg, #FFD700 0%, #C0C0C0 100%);
            color: var(--azul-noturno);
            padding: 0.6rem 1rem;
            border-radius: 0px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
            box-shadow: var(--glow-dourado);
        }

        .btn-curadoria:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255,215,0,0.25);
        }

        @media (max-width: 880px) {
            .btn-curadoria { padding: 0.5rem 0.8rem; font-size: 0.95rem; }
        }

        /* Ajustes para Mobile (< 768px) */
        @media (max-width: 768px) {
            .logo {
                font-size: 0.7rem;
                margin-left: 1rem; /* Ajuste para trazer o título para dentro do fundo preto */
            }
            /* Títulos menores */
            .logo {
                font-size: 0.7rem;
                word-wrap: break-word;
                max-width: 100%;
            }
            .section-header h2 {
                font-size: 0.8rem;
                word-wrap: break-word;
                max-width: 100%;
            }
            .chakra-title,
            .guide-title {
                font-size: 1rem;
            }
            .section-description {
                font-size: 0.8rem;
            }
            .chakra-title {
                font-size: 1.2rem;
            }
            .guide-title {
                font-size: 1.2rem;
            }

            /* Containers e espaçamento */
            .section {
                padding: 2rem 1rem;
                max-width: 100%;
                box-sizing: border-box;
            }
            .cards-grid {
                display: flex;
                flex-direction: column;
                align-items: center;
                width: 100%;
                gap: 1rem;
                margin-top: 2rem;
            }
            .cosmic-card {
                width: 90%;
                padding: 15px;
                margin: 0 auto;
                max-width: 100%;
            }
            .btn-curadoria {
                margin-bottom: 20px;
            }
            .chakra-section,
            .guide-section {
                padding: 1.5rem 1rem;
            }

            /* Rodapé */
            .footer-links {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
                justify-items: center;
            }
            .footer-content {
                padding: 0 1rem;
            }

            /* Menu z-index já alto, mas garantir */
            header {
                z-index: 10000;
                backdrop-filter: none; /* Remove blur para evitar background fixo */
            }

            /* Fundo da página cobrindo toda a tela */
            body::before {
                width: 100vw !important;
                height: 100vh !important;
            }

            /* Ajustes para telas muito pequenas (360px) */
            @media (max-width: 480px) {
                body {/* Lines 589-590 omitted */}
                .section {/* Lines 592-593 omitted */}
                .cards-grid {/* Lines 595-597 omitted */}
                .cosmic-card {/* Lines 599-601 omitted */}
            }

            /* Espaçamento lateral geral */
            body {
                padding: 0 0.5rem;
            }

            /* Largura total */
            * {
                max-width: 100vw;
                box-sizing: border-box;
            }
        }



        /* ═══════════════════════════════════════════════════════════════
           🌌 CONTEÚDO PRINCIPAL
           ═══════════════════════════════════════════════════════════════ */
        main {
            min-height: calc(100vh - 200px);
        }

        .section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            text-transform: uppercase;
            color: var(--dourado);
            margin-bottom: 1rem;
            text-shadow: var(--glow-dourado);
        }

        .section-description {
            font-size: 1.2rem;
            color: var(--glow-dourado);
            max-width: 800px;
            margin: 0 auto;
        }

        /* ═══════════════════════════════════════════════════════════════
           💎 CARDS CÓSMICOS
           ═══════════════════════════════════════════════════════════════ */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            align-items: start;
        }

        .cosmic-card {
            background:var(--preto-fundo);
            border: 1px solid var(--violeta);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .cosmic-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow-violeta);
            border-color: var(--dourado);
        }

        .cosmic-card h3 {
            color: var(--dourado);
            font-family: 'Cinzel', serif;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .cosmic-card p {
            margin-bottom: 0.8rem;
            color: var(--glow-prateado);
        }

        .cosmic-card strong {
            color: var(--dourado);
        }

        /* ═══════════════════════════════════════════════════════════════
           📖 CARDS EXPANSÍVEIS (desktop)
           ═══════════════════════════════════════════════════════════════ */
        .cosmic-card.is-collapsed {
            max-height: 300px;
            overflow: hidden;
            position: relative;
        }

        .cosmic-card.is-collapsed::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 130px;
            background: linear-gradient(to bottom, transparent 0%, var(--preto-fundo, #0a0a2e) 45%);
            border-radius: 0 0 16px 16px;
            pointer-events: none;
        }

        .cosmic-card .card-toggle {
            display: block;
            width: 100%;
            margin-top: 1rem;
            padding: 0.6rem 1.2rem;
            text-align: center;
            color: var(--dourado, #ffd700);
            cursor: pointer;
            font-size: 0.85rem;
            font-family: 'Cinzel', serif;
            letter-spacing: 0.05em;
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 8px;
            background: rgba(255, 215, 0, 0.05);
            transition: all 0.3s ease;
        }

        .cosmic-card .card-toggle:hover {
            background: rgba(255, 215, 0, 0.15);
            border-color: var(--dourado, #ffd700);
        }

        .cosmic-card.is-collapsed .card-toggle {
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            width: auto;
            margin: 0;
            background: var(--preto-fundo, #0a0a2e);
        }

        .cosmic-card.is-collapsed:hover {
            transform: none;
        }

        /* Ajustes para mobile - cards centralizados */
        @media (max-width: 768px) {
            .cards-grid {
                grid-template-columns: 1fr; /* Cards em coluna única no mobile */
                gap: 1.5rem;
                justify-items: center; /* Centraliza os cards */
            }
            
            .cosmic-card {
                max-width: 100%; /* Cards ocupam toda largura disponível */
                width: 100%;
                margin: 0 auto; /* Centraliza horizontalmente */
                padding: 1rem; /* Padding menor em telas muito pequenas */
            }

            .cosmic-card h3 {
                font-size: 1.1rem; /* Títulos menores no mobile */
            }

            .cosmic-card p {
                font-size: 0.9rem; /* Textos menores no mobile */
            }
        }

        @media (max-width: 480px) {
            .cards-grid {
                gap: 1rem;
                padding: 0 0.5rem; /* Espaçamento lateral */
            }
            
            .cosmic-card {
                padding: 1.5rem; /* Padding menor em telas muito pequenas */
            }
        }

        .stone-image {
            width: 90%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 1rem;
           
            transition: all 0.3s ease;
        }

        .stone-image:hover {
            border-color: var(--dourado);
            box-shadow: var(--glow-dourado);
        }

        .coming-soon {
            text-align: center;
            padding: 2rem;
            background: rgba(138, 43, 226, 0.1);
            border-radius: 16px;
            border: 2px dashed var(--violeta);
        }

        .coming-soon h3 {
            color: var(--dourado);
            font-family: 'Cinzel', serif;
            margin-bottom: 1rem;
        }

        .coming-soon p {
            color: var(--prateado);
        }

        /* ═══════════════════════════════════════════════════════════════
           🌙 FOOTER
           ═══════════════════════════════════════════════════════════════ */
        footer {
            background: var(--preto-fundo);
            border-top: 1px solid var(--violeta);
            padding: 2rem 0;
            text-align: center;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--lilas);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--dourado);
        }

        .footer-text {
            color: var(--branco-perola);
            font-size: 0.9rem;
        }

        /* ═══════════════════════════════════════════════════════════════
           � TABELAS CÓSMICAS
           ═══════════════════════════════════════════════════════════════ */
        .cosmic-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(26, 26, 77, 0.8);
            border-radius: 16px;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .cosmic-table th,
        .cosmic-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--violeta);
        }

        .cosmic-table th {
            background: var(--nebula-gradient);
            color: var(--dourado);
            font-family: 'Cinzel', serif;
            font-weight: 600;
        }

        .cosmic-table td {
            color: rgb(255, 255, 255);
        }

        .cosmic-table tr:hover {
            background: rgba(138, 43, 226, 0.1);
        }

        /* ═══════════════════════════════════════════════════════════════
           📖 SEÇÕES DETALHADAS
           ═══════════════════════════════════════════════════════════════ */
        .chakra-section {
            margin: 4rem 0;
            padding: 2rem;
            background: var(--preto-fundo);
            border-radius: 16px;
            border: 1px solid var(--violeta);
        }

        .chakra-title {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            color: var(--dourado);
            margin-bottom: 1rem;
            text-shadow: var(--glow-dourado);
        }

        .chakra-description {
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .chakra-stones {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .stone-item {
            background: var(--preto-fundo);
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid var(--branco-perola);
        }

        .stone-item h4 {
            color: var(--dourado);
            margin-bottom: 0.5rem;
        }

        .stone-item p {
            font-size: 1rem;
            color: var(--prateado);
        }

        /* ═══════════════════════════════════════════════════════════════
           📚 GUIA DE USO
           ═══════════════════════════════════════════════════════════════ */
        .guide-section {
            margin: 4rem 0;
            padding: 2rem;
            background: var(--preto-fundo);
            border-radius: 16px;
            border: 1px solid var(--violeta);
        }

        .guide-title {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            color: var(--dourado);
            margin-bottom: 1rem;
            text-shadow: var(--glow-dourado);
        }

        .guide-content {
            line-height: 1.8;
        }

        .guide-step {
            margin: 2rem 0;
            padding: 1rem;
            background: rgba(138, 43, 226, 0.1);
            border-radius: 8px;
            border-left: 4px solid var(--dourado);
        }

        .guide-step h3 {
            color: var(--dourado);
            margin-bottom: 0.5rem;
        }

        /* Modo Alto Contraste */
        .high-contrast {
            --cor-base: #000000 !important;
            --brilho-cristal: #ffffff !important;
            --branco-perola: #ffffff !important;
            --roxo-profundo: #ffffff !important;
            --lilas: #ffffff !important;
            --dourado: #ffff00 !important;
            --roxo-escuro: #000000 !important;
            --preto-fundo: #000000 !important;
            --azul-noturno: #000000 !important;
            --violeta: #ffffff !important;
            --prateado: #ffffff !important;
        }

        .high-contrast body {
            background: #000000 !important;
            color: #ffffff !important;
        }

        .high-contrast .cosmic-card {
            background: #000000 !important;
            border-color: #ffffff !important;
        }

        .high-contrast .nav-items a {
            color: #ffffff !important;
        }

        .high-contrast .section-header h2 {
            color: #ffff00 !important;
        }

        /* Ajustes específicos para botões no alto contraste */
        .high-contrast .btn-luminah {
            background: #ffff00 !important; /* Fundo amarelo */
            color: #000000 !important; /* Texto preto para contraste */
        }

        .high-contrast .dropdown-content button {
            background: #000000 !important; /* Fundo preto */
            color: #ffffff !important; /* Texto branco */
        }

        .high-contrast .dropdown-content button:hover {
            background: #ffff00 !important; /* Fundo amarelo no hover */
            color: #000000 !important; /* Texto preto */
        }

        .high-contrast .btn-portal-nutricional,
        .high-contrast .btn-curadoria,
        .high-contrast .btn-play-frequency {
            background: #ffff00 !important;
            color: #000000 !important;
        }

        /* Ajuste específico para botões na navbar em alto contraste */
        .high-contrast .nav-items .btn-portal-nutricional,
        .high-contrast .nav-items .btn-luminah {
            background: #ffff00 !important;
            color: #000000 !important;
            text-shadow: none !important;
        }

        /* Ajustes para modal de acessibilidade no alto contraste */
        .high-contrast .accessibility-modal-content {
            background: #000000 !important;
            border-color: #ffffff !important;
        }
        .high-contrast .accessibility-title {
            color: #ffff00 !important;
        }
        .high-contrast .accessibility-close {
            color: #ffffff !important;
        }
        .high-contrast .accessibility-options button {
            background: #ffff00 !important;
            color: #000000 !important;
        }

        /* Ajustes para botões do menu no mobile */
        @media (max-width: 768px) {
            .nav-items .btn-portal-nutricional,
            .nav-items .btn-luminah,
            .nav-items .btn-encontre-terapeuta {
                background: rgba(18, 18, 18, 0.8) !important; /* Quase da cor do fundo escuro */
                color: var(--dourado) !important;
                border: 1px solid var(--violeta) !important;
            }
            .nav-items .btn-portal-nutricional:hover,
            .nav-items .btn-luminah:hover,
            .nav-items .btn-encontre-terapeuta:hover {
                background: rgba(138, 43, 226, 0.3) !important;
            }
            /* Overrides para alto contraste no mobile */
            .high-contrast .nav-items .btn-portal-nutricional,
            .high-contrast .nav-items .btn-luminah,
            .high-contrast .nav-items .btn-encontre-terapeuta {
                background: rgba(18, 18, 18, 0.8) !important;
                color: var(--dourado) !important;
            }
        }
        .btn-modo-immersao {
            background: transparent;
            color: var(--dourado);
            border: 1px solid rgba(255,215,0,0.12);
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: transform .15s ease, background .15s ease;
        }
        .btn-modo-immersao[aria-pressed="true"] {
            background: linear-gradient(135deg, #4B0082, #2E003E);
            color: white;
            box-shadow: var(--glow-violeta);
            transform: scale(1.02);
        }

        /* Botão de acessibilidade na navbar */
        .nav-items .accessibility-toggle {
            background: transparent;
            color: var(--dourado);
            border: 1px solid rgba(255,215,0,0.12);
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: transform .15s ease, background .15s ease;
            font-size: 1rem;
            margin-left: 0.5rem;
        }
        .nav-items .accessibility-toggle:hover {
            background: rgba(138, 43, 226, 0.1);
            transform: scale(1.02);
        }

        /* Modo Imersão: Modo Leitura Completo */
        .modo-immersao {
            background: #121212 !important;
            color: #E0E0E0 !important;
        }

        /* Remove elementos visuais de fundo para foco na leitura */
        .modo-immersao body::before,
        .modo-immersao body::after {
            display: none !important;
        }

        /* Partículas mais suaves no modo imersão */
        .modo-immersao .particle {
            opacity: 0.3 !important;
            animation-duration: 12s !important; /* Mais lento */
        }

        /* Elementos principais */
        .modo-immersao .section {
            background: rgba(18, 18, 18, 0.95) !important;
            border-color: #2A2A2A !important;
        }

        .modo-immersao .cosmic-card {
            background: rgba(255, 255, 255, 0.03) !important;
            border-color: #404040 !important;
            color: #E0E0E0 !important;
        }

        .modo-immersao .cosmic-card h3 {
            color: #E0E0E0 !important;
        }

        .modo-immersao .cosmic-card p {
            color: #CCCCCC !important;
        }

        /* Headers e textos */
        .modo-immersao .section-header h2 {
            color: #E0E0E0 !important;
            text-shadow: none !important;
        }

        .modo-immersao .section-description {
            color: #CCCCCC !important;
        }

        .modo-immersao .chakra-title {
            color: #E0E0E0 !important;
            text-shadow: none !important;
        }

        .modo-immersao .chakra-description {
            color: #CCCCCC !important;
        }

        /* Navegação */
        .modo-immersao .navbar {
            background: rgba(18, 18, 18, 0.95) !important;
            border-bottom: 1px solid #404040 !important;
        }

        .modo-immersao .nav-items a {
            color: #CCCCCC !important;
        }

        .modo-immersao .nav-items a:hover {
            color: #E0E0E0 !important;
        }

        .modo-immersao .logo {
            color: #E0E0E0 !important;
            text-shadow: none !important;
        }

        /* Dropdown menus */
        .modo-immersao .dropdown-content {
            background: rgba(18, 18, 18, 0.98) !important;
            border-color: #404040 !important;
        }

        .modo-immersao .dropdown-content a {
            color: #CCCCCC !important;
        }

        .modo-immersao .dropdown-content a:hover {
            background: rgba(64, 64, 64, 0.3) !important;
            color: #E0E0E0 !important;
        }

        /* Footer */
        .modo-immersao footer {
            background: #121212 !important;
            border-top: 1px solid #404040 !important;
        }

        .modo-immersao .footer-links a {
            color: #CCCCCC !important;
        }

        .modo-immersao .footer-links a:hover {
            color: #E0E0E0 !important;
        }

        .modo-immersao .footer-text {
            color: #CCCCCC !important;
        }

        /* Botões */
        .modo-immersao .btn-portal-nutricional,
        .modo-immersao .btn-luminah,
        .modo-immersao .btn-curadoria,
        .modo-immersao .btn-encontre-terapeuta {
            background: rgba(64, 64, 64, 0.8) !important;
            color: #E0E0E0 !important;
            border-color: #606060 !important;
        }

        .modo-immersao .btn-portal-nutricional:hover,
        .modo-immersao .btn-luminah:hover,
        .modo-immersao .btn-curadoria:hover,
        .modo-immersao .btn-encontre-terapeuta:hover {
            background: rgba(80, 80, 80, 0.9) !important;
        }

        /* Tabelas */
        .modo-immersao .cosmic-table {
            background: rgba(18, 18, 18, 0.9) !important;
            border-color: #404040 !important;
        }

        .modo-immersao .cosmic-table th {
            background: rgba(42, 42, 42, 0.8) !important;
            color: #E0E0E0 !important;
        }

        .modo-immersao .cosmic-table td {
            color: #CCCCCC !important;
            border-color: #404040 !important;
        }

        /* Seções especiais */
        .modo-immersao .chakra-section {
            background: rgba(18, 18, 18, 0.9) !important;
            border-color: #404040 !important;
        }

        .modo-immersao .guide-section {
            background: rgba(18, 18, 18, 0.9) !important;
            border-color: #404040 !important;
        }

        /* Ajustes de contraste para acessibilidade */
        .modo-immersao .stone-image {
            opacity: 0.7 !important;
        }

        /* Botão de acessibilidade sempre visível em desktop e mobile */
        .accessibility-toggle {
            display: inline-block; /* Sempre visível */
            background: transparent;
            border: 1px solid rgba(255,215,0,0.12);
            color: var(--dourado);
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: transform .15s ease, background .15s ease;
            font-size: 1rem;
            margin-left: 0.5rem;
        }
        .accessibility-toggle:hover {
            background: rgba(138, 43, 226, 0.1);
            transform: scale(1.02);
        }

        /* Ajustes específicos para mobile */
        @media (max-width: 768px) {
            .accessibility-toggle {
                margin-left: 0.25rem;
                padding: 0.3rem 0.6rem;
                font-size: 0.9rem;
            }
        }

        /* Modal de acessibilidade */
        .accessibility-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        .accessibility-modal[aria-hidden="false"] {
            display: flex;
        }
        .accessibility-modal-content {
            background: var(--preto-fundo);
            border: 1px solid var(--violeta);
            border-radius: 16px;
            padding: 2rem;
            max-width: 90%;
            width: 300px;
            text-align: center;
            position: relative;
        }
        .accessibility-title {
            color: var(--dourado);
            margin-bottom: 1rem;
            font-family: 'Cinzel', serif;
        }
        .accessibility-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: transparent;
            border: none;
            color: var(--dourado);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .accessibility-options {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .accessibility-options button {
            background: var(--violeta);
            color: var(--branco-perola);
            border: none;
            padding: 0.5rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .accessibility-options button:hover {
            background: var(--roxo-profundo);
        }

/* ==========================================================================
   🌟 ESTILOS PARA BOTÕES CÓSMICOS - MANDALAS.HTML
   ========================================================================== */

.cosmic-button {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.05), 0 0 30px rgba(0,0,0,0.3);
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.cosmic-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.cosmic-button:hover::before {
    left: 100%;
}

.cosmic-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cosmic-button.gold {
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,165,0,0.1));
    border: 1px solid rgba(255,215,0,0.3);
    box-shadow: inset 0 0 20px rgba(255,215,0,0.1), 0 0 30px rgba(255,215,0,0.2);
}

.cosmic-button.gold:hover {
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

.cosmic-button.silver {
    background: linear-gradient(135deg, rgba(192,192,192,0.1), rgba(169,169,169,0.1));
    border: 1px solid rgba(192,192,192,0.3);
    box-shadow: inset 0 0 20px rgba(192,192,192,0.1), 0 0 30px rgba(192,192,192,0.2);
}

.cosmic-button.silver:hover {
    box-shadow: 0 10px 30px rgba(192,192,192,0.4);
}

.button-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .cosmic-button {
        min-width: 200px;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .button-grid {
        flex-direction: column;
        align-items: center;
    }
}