/* Stylesheet for Umbanda Iniciantes Profile & Auth System */

/* Garante que o canvas do rastro não afete o layout */
#mouse-trail-canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    pointer-events: none !important;
    z-index: 100000 !important;
}

/* Global Glassmorphic and Glow Elements */
.auth-glass {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.profile-widget-glow {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-widget-glow:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.8);
}

/* Modal and Overlays */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

/* Custom Scrollbar for Modal */
.modal-container::-webkit-scrollbar {
    width: 6px;
}

.modal-container::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

.modal-container::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 99px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

/* Avatar Selection Styles */
.avatar-option {
    position: relative;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
}

.avatar-option:hover {
    transform: scale(1.05);
    border-color: rgba(212, 175, 55, 0.4);
}

.avatar-option.selected {
    border-color: #D4AF37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.avatar-option.selected::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #0f172a;
    color: #D4AF37;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Notification/Toast styles */
.auth-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    background: rgba(30, 41, 59, 0.95);
    border-left: 4px solid #D4AF37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.auth-toast.active {
    transform: translateY(0);
    opacity: 1;
}

/* Modo Leitura Sagrada */
body.sacred-reading {
    background: #111827 !important;
    line-height: 1.8 !important;
    font-size: 1.1rem;
}

body.sacred-reading p {
    color: #e5e7eb !important;
    margin-bottom: 1.5rem;
}

body.sacred-reading main {
    max-width: 50rem !important;
    /* Estreita o texto para foco */
}

/* Estilos de Quiz e Progresso */
.quiz-option {
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quiz-option:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
}

.quiz-option.correct {
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.1) !important;
}

.quiz-option.wrong {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
}

/* Botões de Ação Global */
#global-actions-container button {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

#global-actions-container i {
    font-size: 1.1rem;
}

@media (max-width: 640px) {
    #global-actions-container {
        bottom: 1.5rem;
        left: 1.5rem;
    }
}

@media (max-width: 640px) {
    .auth-toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        transform: translateY(50px);
    }

    #global-profile-widget {
        top: auto !important;
        bottom: 1.5rem !important;
        right: 1.5rem !important;
        left: auto !important;
    }
}

/* Barra de Progresso Mobile e Mensagem de Sucesso */
@media (max-width: 640px) {
    #mobile-scroll-progress-container {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: rgba(15, 23, 42, 0.3);
        z-index: 9999;
        pointer-events: none;
        transition: transform 0.3s ease;
    }

    #mobile-scroll-progress-container.progress-hidden {
        transform: translateY(-100%);
    }

    #mobile-scroll-progress-bar {
        height: 100%;
        background: #D4AF37;
        width: 0%;
        box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
        transition: width 0.1s linear, background-color 0.3s ease;
    }

    #mobile-scroll-progress-bar.finished {
        background: #10b981;
        box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
    }
}

.congrats-overlay {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.congrats-overlay.active {
    opacity: 1;
}

.congrats-card {
    padding: 2.5rem;
    border-radius: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.8) translateY(20px);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.congrats-overlay.active .congrats-card {
    transform: scale(1) translateY(0);
}

/* ======================================================== */
/* === ENGAGEMENT FEATURES — RAÍZES DA UMBANDA =========== */
/* ======================================================== */

/* --- 1. ORÁCULO SAGRADO DIÁRIO (CARD FLIP 3D) --- */
.oracle-section {
    max-width: 480px;
    margin: 2rem auto;
    text-align: center;
    padding: 0 1rem;
}

.oracle-scene {
    perspective: 1000px;
    width: 100%;
    height: 220px;
    cursor: pointer;
    margin: 0 auto 1rem;
}

.oracle-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.oracle-card.flipped {
    transform: rotateY(180deg);
}

.oracle-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}

.oracle-face-front {
    background: linear-gradient(135deg, #1a1200 0%, #2d2000 40%, #1a1200 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15), inset 0 0 60px rgba(212, 175, 55, 0.04);
}

.oracle-face-front::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 1.1rem;
    pointer-events: none;
}

.oracle-face-front::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent 0deg, rgba(212, 175, 55, 0.06) 60deg, transparent 120deg);
    animation: oracle-shimmer 4s linear infinite;
    pointer-events: none;
}

@keyframes oracle-shimmer {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.oracle-icon-star {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 0.75rem;
    animation: oracle-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
}

@keyframes oracle-pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; }
}

.oracle-face-front .oracle-label {
    color: #D4AF37;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.oracle-face-front .oracle-hint {
    color: rgba(212, 175, 55, 0.5);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    animation: oracle-pulse 2s ease-in-out infinite 0.5s;
}

.oracle-face-back {
    background: linear-gradient(135deg, #0d1f0d 0%, #152a15 40%, #0d1f0d 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1), inset 0 0 50px rgba(16, 120, 16, 0.04);
    transform: rotateY(180deg);
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
}

.oracle-face-back::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 1.1rem;
    pointer-events: none;
}

.oracle-source-badge {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #D4AF37;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.oracle-message {
    color: #F5F1E8;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 0.5rem;
}

.oracle-already-drawn {
    font-size: 0.65rem;
    color: rgba(212, 175, 55, 0.5);
    margin-top: 0.25rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- 2. CELEBRATION ACHIEVEMENT MODAL --- */
#celebration-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 20000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

#celebration-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.celebration-card {
    background: linear-gradient(145deg, #111 0%, #1a1200 50%, #111 100%);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 2rem;
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.1),
        0 0 60px rgba(212, 175, 55, 0.2),
        0 25px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.8) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: all;
    position: relative;
    overflow: hidden;
}

#celebration-modal-overlay.active .celebration-card {
    transform: scale(1) translateY(0);
}

.celebration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.celebration-crown-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.7));
    animation: celebration-bounce 1s ease-in-out infinite alternate;
}

@keyframes celebration-bounce {
    from { transform: translateY(0) scale(1); }
    to { transform: translateY(-8px) scale(1.05); }
}

.celebration-title {
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.celebration-subtitle {
    color: #F5F1E8;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: rgba(245, 241, 232, 0.6);
}

.celebration-achievement-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.celebration-achievement-badge i {
    font-size: 1.5rem;
    color: #D4AF37;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
    flex-shrink: 0;
}

.celebration-achievement-name {
    color: #F5F1E8;
    font-weight: 700;
    font-size: 0.9rem;
}

.celebration-achievement-desc {
    color: rgba(245, 241, 232, 0.5);
    font-size: 0.7rem;
    margin-top: 0.1rem;
}

.celebration-progress-section {
    margin: 1.25rem 0;
    text-align: left;
}

.celebration-progress-label {
    color: rgba(245, 241, 232, 0.5);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.celebration-progress-bar-bg {
    background: rgba(255,255,255,0.07);
    border-radius: 999px;
    height: 8px;
    overflow: hidden;
}

.celebration-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #C9A35D, #F3E5AB, #D4AF37);
    border-radius: 999px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.celebration-next-level {
    color: rgba(245, 241, 232, 0.4);
    font-size: 0.7rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.celebration-btn-whatsapp {
    background: #25D366;
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    cursor: pointer;
    width: 100%;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.celebration-btn-whatsapp:hover {
    background: #20bd59;
    transform: scale(1.02);
}

.celebration-btn-continue {
    background: transparent;
    color: rgba(245, 241, 232, 0.4);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    width: 100%;
    margin-top: 0.5rem;
    transition: all 0.2s;
}

.celebration-btn-continue:hover {
    color: #F5F1E8;
    border-color: rgba(212, 175, 55, 0.3);
}

/* --- 3. FLOATING AUDIO PLAYER ("SONS DE TERREIRO") --- */
#audio-player-floater {
    position: fixed;
    bottom: 6.5rem;
    right: 1.5rem;
    z-index: 5000;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#audio-player-panel {
    background: rgba(15, 12, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 1.5rem;
    padding: 1rem;
    width: 220px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 20px rgba(212, 175, 55, 0.08);
    display: none;
    animation: slide-up 0.3s ease;
    margin-bottom: 0.5rem;
}

#audio-player-panel.visible {
    display: block;
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.audio-track-name {
    color: #D4AF37;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-track-artist {
    color: rgba(245, 241, 232, 0.4);
    font-size: 0.6rem;
    margin-bottom: 0.75rem;
}

.audio-progress-bar-bg {
    background: rgba(255,255,255,0.07);
    border-radius: 999px;
    height: 4px;
    cursor: pointer;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.audio-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #C9A35D, #D4AF37);
    border-radius: 999px;
    width: 0%;
    transition: width 0.5s linear;
}

.audio-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.audio-btn {
    background: none;
    border: none;
    color: rgba(245, 241, 232, 0.6);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.85rem;
    transition: all 0.2s;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-btn:hover {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
}

.audio-btn-play {
    background: rgba(212, 175, 55, 0.2) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #D4AF37 !important;
    font-size: 1rem !important;
    width: 36px !important;
    height: 36px !important;
}

.audio-btn-play:hover {
    background: rgba(212, 175, 55, 0.35) !important;
    transform: scale(1.05);
}

.audio-volume-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.audio-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.07);
    border-radius: 999px;
    cursor: pointer;
}

.audio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

.audio-toggle-btn {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.audio-toggle-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: scale(1.07);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.audio-toggle-btn.playing {
    animation: audio-playing-glow 2s ease-in-out infinite;
}

@keyframes audio-playing-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.6); }
}

/* --- 4. COUNTDOWN BANNER ("PRÓXIMA GIRA") --- */
.gira-countdown-banner {
    background: linear-gradient(135deg, rgba(20,15,0,0.9) 0%, rgba(30,20,0,0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 1.5rem;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem auto;
    max-width: 560px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(212, 175, 55, 0.08);
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.gira-countdown-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 50%, transparent 100%);
}

.gira-countdown-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gira-countdown-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1rem;
    flex-shrink: 0;
    animation: oracle-pulse 2.5s ease-in-out infinite;
}

.gira-countdown-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #D4AF37;
}

.gira-countdown-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #F5F1E8;
    margin-top: 0.1rem;
}

.gira-countdown-digits {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.countdown-unit {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 0.5rem;
    padding: 0.4rem 0.6rem;
    text-align: center;
    min-width: 48px;
}

.countdown-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #D4AF37;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    font-family: 'Courier New', monospace;
}

.countdown-label-unit {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.4);
    margin-top: 0.15rem;
}

/* --- 5. ENHANCED HERBÁRIO CHECKLIST --- */
.herb-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.herb-checklist-item:hover {
    background: rgba(212, 175, 55, 0.04);
    border-color: rgba(212, 175, 55, 0.12);
}

.herb-checklist-item input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #D4AF37;
    cursor: pointer;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.herb-checklist-item input:checked + .herb-checklist-text {
    color: rgba(212, 175, 55, 0.7);
    text-decoration: line-through;
}

.herb-checklist-text {
    font-size: 0.8rem;
    color: rgba(245, 241, 232, 0.7);
    line-height: 1.5;
    transition: all 0.2s;
}

.herb-checklist-complete-banner {
    background: linear-gradient(135deg, #0d200d, #152415);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    text-align: center;
    margin-top: 0.75rem;
    display: none;
    animation: slide-up 0.4s ease;
}

.herb-checklist-complete-banner.visible {
    display: block;
}

.herb-filter-tag {
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: transparent;
    color: rgba(245, 241, 232, 0.6);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.herb-filter-tag:hover,
.herb-filter-tag.active {
    background: #D4AF37;
    color: #0A0A0A;
    border-color: #D4AF37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* --- 6. QUIZ CARDS EXTRAS NO SUMÁRIO --- */
.engagement-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 180px;
    justify-content: center;
}

.engagement-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.1);
    background: rgba(40, 32, 0, 0.5);
}

.engagement-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #D4AF37;
    margin-bottom: 0.25rem;
}

@media (max-width: 640px) {
    .gira-countdown-banner {
        flex-direction: column;
        text-align: center;
    }
    .gira-countdown-left {
        flex-direction: column;
        text-align: center;
    }
    .gira-countdown-digits {
        justify-content: center;
    }
    #audio-player-floater {
        bottom: 5.5rem;
        right: 1rem;
    }
    #audio-player-panel {
        width: 190px;
    }
}