/* Voy2Courses Player - Estilos Fullscreen Modernos */

/* Reset e Variáveis */
:root {
    --voy2-brand-blue: #4285F4;
    --voy2-brand-purple: #8D00FF;
    --voy2-brand-pink: #C50491;
    --voy2-gray-50: #f9fafb;
    --voy2-gray-100: #f3f4f6;
    --voy2-gray-200: #e5e7eb;
    --voy2-gray-300: #d1d5db;
    --voy2-gray-400: #9ca3af;
    --voy2-gray-500: #6b7280;
    --voy2-gray-600: #4b5563;
    --voy2-gray-700: #374151;
    --voy2-gray-800: #1f2937;
    --voy2-gray-900: #111827;
    --voy2-white: #ffffff;
    --voy2-header-height: 60px;
}

/* Exercise Area - Controle Principal */
#voy2courses-exercise-area {
    display: none !important; /* Forçar sempre escondido inicialmente */
    visibility: hidden !important; /* Dupla garantia */
    margin: 20px 40px;
    padding: 20px;
    background: #f6f6f6;
    border-radius: 8px;
    border: 1px solid rgba(141, 0, 255, 0.2);
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Classe para mostrar exercícios explicitamente */
#voy2courses-exercise-area.voy2courses-show-exercises {
    display: block !important;
    visibility: visible !important;
    animation: fadeIn 0.5s ease;
}

/* Classe para esconder slides quando mostrando exercícios */
.voy2courses-slides-container.voy2courses-hide-for-exercises {
    display: none !important;
}

/* Container de slides com altura e scroll adequados */
.voy2courses-slides-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 20px 40px;
    min-height: 0; /* Importante para flexbox */
}

.voy2courses-slide-content-area {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px;
    max-height: calc(100vh - 300px); /* Ajustar baseado no seu layout */
}

/* Quando mostrando exercícios */
.voy2courses-slides-container.voy2courses-hide-for-exercises {
    display: none;
}

/* Garantir que o conteúdo principal tem scroll adequado */
.voy2courses-lesson-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0; /* Importante para flexbox */
}

/* Área de exercícios com scroll próprio */


/* Melhorar scrollbar */
.voy2courses-slide-content-area::-webkit-scrollbar,
#voy2courses-exercise-area::-webkit-scrollbar {
    width: 10px;
}

.voy2courses-slide-content-area::-webkit-scrollbar-track,
#voy2courses-exercise-area::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.voy2courses-slide-content-area::-webkit-scrollbar-thumb,
#voy2courses-exercise-area::-webkit-scrollbar-thumb {
    background: var(--voy2-gray-600);
    border-radius: 5px;
}

.voy2courses-slide-content-area::-webkit-scrollbar-thumb:hover,
#voy2courses-exercise-area::-webkit-scrollbar-thumb:hover {
    background: var(--voy2-gray-500);
}

/* Navegação de slides sempre no fundo */
.voy2courses-slide-navigation {
    padding-top: 20px;
    border-top: 1px solid var(--voy2-gray-700);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background: var(--voy2-gray-900);
    position: relative;
    z-index: 10;

}

/* Container Fullscreen */
.voy2courses-player-container.voy2courses-fullscreen {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background-color: var(--voy2-gray-100);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.voy2courses-player-header {
    height: var(--voy2-header-height);
    background: linear-gradient(to right, var(--voy2-brand-blue), var(--voy2-brand-purple), var(--voy2-brand-pink));
    display: flex;
    align-items: center;
    padding: 0 25px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.voy2courses-header-content {
    width: 100%;
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.voy2courses-back-button {
    color: var(--voy2-white);
    font-size: 1.2rem;
    text-decoration: none;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.voy2courses-back-button:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateX(-2px);
}

.voy2courses-platform-title {
    color: var(--voy2-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.voy2courses-current-lesson-title {
    color: var(--voy2-white);
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Body Layout */
.voy2courses-player-body {
    display: flex;
    flex-grow: 1;
    overflow: hidden;
}

/* Main Content Area */
.voy2courses-main-content {
    flex-grow: 1;
    overflow: hidden;
    background-color: var(--voy2-gray-900);
    color: var(--voy2-gray-300);
    display: flex;
}

.voy2courses-player-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Large Play Button */
.voy2courses-large-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 10;
}

.voy2courses-large-play-icon:hover {
    color: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%) scale(1.1);
}

.voy2courses-main-content.voy2courses-is-active .voy2courses-large-play-icon {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.8);
}

/* Lesson Content */
.voy2courses-lesson-content {
    opacity: 0;
    transition: opacity 0.5s ease 0.2s;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.voy2courses-main-content.voy2courses-is-active .voy2courses-lesson-content {
    opacity: 1;
}

/* Audio Player Container */
.voy2courses-audio-player-container {
    padding: 20px 40px;
    flex-shrink: 0;
    background-color: var(--voy2-gray-800);
    border-bottom: 1px solid var(--voy2-gray-700);
    display: flex;
    align-items: center;
    gap: 20px;
}

.voy2courses-lesson-title-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--voy2-white);
    margin: 0;
    flex-grow: 1;
}

.voy2courses-audio-control-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--voy2-brand-blue), var(--voy2-brand-purple));
    border-radius: 50%;
    border: none;
    color: var(--voy2-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.voy2courses-audio-control-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.voy2courses-audio-control-button.voy2courses-playing {
    animation: voy2courses-pulse 2s infinite;
}

@keyframes voy2courses-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Subtitles Container */
.voy2courses-subtitles-container {
    padding: 15px 40px;
    background-color: rgba(0,0,0,0.2);
    min-height: 80px;
    max-height: 120px;
    overflow-y: auto;
    flex-shrink: 0;
    border-bottom: 1px solid var(--voy2-gray-700);
}

.voy2courses-subtitle-text-display {
    font-size: 1rem;
    color: var(--voy2-gray-200);
    line-height: 1.5;
    text-align: center;
    transition: opacity 0.2s ease-in-out;
    margin: 0;
}

.voy2courses-subtitle-text-display.voy2courses-is-updating {
    opacity: 0.7;
}

/* Slides Container */
.voy2courses-slides-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 20px 40px;
}

.voy2courses-slide-content-area {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 15px;
}

.voy2courses-slide-content-area.voy2courses-fade-out {
    opacity: 0;
    transition: opacity 0.15s ease-out;
}

/* Slides Content Styling */
.voy2courses-chapter-slides {
    width: 100%;
}

.voy2courses-chapter-slide {
    display: none;
    animation: voy2courses-fadeIn 0.5s ease;
}

.voy2courses-chapter-slide.voy2courses-active {
    display: block;
}

@keyframes voy2courses-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.voy2courses-slide-header {
    color: var(--voy2-brand-blue);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(66, 133, 244, 0.2);
}

.voy2courses-slide-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--voy2-gray-300);
}

.voy2courses-slide-content h3 {
    color: var(--voy2-brand-purple);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.voy2courses-slide-content ul {
    list-style: none;
    padding-left: 5px;
    margin: 1.5rem 0;
}

.voy2courses-slide-content li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--voy2-gray-300);
}

.voy2courses-slide-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--voy2-brand-purple);
    font-weight: bold;
}

.voy2courses-highlight-box {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1) 0%, rgba(141, 0, 255, 0.1) 100%);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(66, 133, 244, 0.2);
    color: #333;
}

.voy2courses-highlight-box h3 {
    color: var(--voy2-brand-blue);
    margin-top: 0;
}

/* Slide Navigation */
.voy2courses-slide-navigation {
    padding-top: 20px;
    border-top: 1px solid var(--voy2-gray-700);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.voy2courses-nav-button {
    background-color: var(--voy2-gray-700);
    color: var(--voy2-white);
    border: 1px solid var(--voy2-gray-600);
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.voy2courses-nav-button:hover:not(:disabled) {
    background-color: var(--voy2-gray-600);
    border-color: var(--voy2-gray-500);
}

.voy2courses-nav-button:disabled {
    background-color: var(--voy2-gray-800);
    color: var(--voy2-gray-500);
    cursor: not-allowed;
    opacity: 0.5;
}

.voy2courses-counter {
    font-size: 0.9rem;
    color: var(--voy2-gray-400);
}

/* Sidebar */
.voy2courses-player-sidebar {
    width: 320px;
    min-width: 280px;
    background-color: var(--voy2-gray-50);
    border-left: 1px solid var(--voy2-gray-200);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.voy2courses-sidebar-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--voy2-gray-200);
    flex-shrink: 0;
}

.voy2courses-sidebar-header h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--voy2-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.voy2courses-curriculum-container {
    padding: 10px 0;
    flex-grow: 1;
}

.voy2courses-section {
    margin-bottom: 5px;
}

.voy2courses-section-header {
    background-color: transparent;
    color: var(--voy2-gray-700);
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid var(--voy2-gray-200);
}

.voy2courses-section:first-child .voy2courses-section-header {
    border-top: 1px solid var(--voy2-gray-200);
}

.voy2courses-section-header:hover {
    background-color: var(--voy2-gray-100);
}

.voy2courses-section-header .voy2courses-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.voy2courses-section-header.voy2courses-open .voy2courses-arrow {
    transform: rotate(90deg);
}

.voy2courses-lesson-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    background-color: var(--voy2-white);
}

.voy2courses-section-header.voy2courses-open + .voy2courses-lesson-list {
    padding-top: 5px;
    padding-bottom: 5px;
}

.voy2courses-lesson-list li {
    padding: 10px 20px 10px 35px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--voy2-gray-600);
    transition: all 0.2s ease;
    position: relative;
}

.voy2courses-lesson-list li:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--voy2-gray-300);
    border-radius: 50%;
}

.voy2courses-lesson-list li:hover {
    background-color: var(--voy2-gray-100);
    color: var(--voy2-gray-800);
}

.voy2courses-lesson-list li.voy2courses-active {
    background-color: var(--voy2-brand-blue);
    color: var(--voy2-white);
    font-weight: 500;
}

.voy2courses-lesson-list li.voy2courses-active:before {
    background-color: var(--voy2-white);
}

.voy2courses-chapter-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Exercise Area - Melhorias */
#voy2courses-exercise-area {
    margin: 20px 40px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(141, 0, 255, 0.1) 0%, rgba(197, 4, 145, 0.1) 100%);
    border-radius: 8px;
    border: 1px solid rgba(141, 0, 255, 0.2);
}

.voy2courses-exercises-container {
    background: transparent;
     padding-bottom: 20px;
}

.voy2courses-exercises-container h4 {
    color: var(--voy2-white);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.voy2courses-exercise-item {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 800px; /* Limitar largura para melhor leitura */
    margin-left: auto;
    margin-right: auto;
}

.voy2courses-exercise-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.voy2courses-exercise-options {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #444;
}

.voy2courses-exercise-options li {
    margin-bottom: 0.75rem;
    color: #444
}

.voy2courses-exercise-options label {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    color: var(--voy2-gray-200);
}

.voy2courses-exercise-options label:hover {
    border-color: var(--voy2-brand-blue);
    background: rgba(66, 133, 244, 0.1);
}

.voy2courses-exercise-options input[type="radio"] {
    margin-right: 1rem;
}

/* Loader */
.voy2courses-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.voy2courses-spinner {
    border: 4px solid rgba(66, 133, 244, 0.1);
    border-top: 4px solid var(--voy2-brand-blue);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: voy2courses-spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes voy2courses-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Controles de Áudio Aprimorados */
.voy2courses-audio-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
}

.voy2courses-audio-progress-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.voy2courses-audio-progress {
    height: 6px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.voy2courses-audio-progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--voy2-brand-blue), var(--voy2-brand-purple));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.voy2courses-audio-progress-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: var(--voy2-white);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    left: 0%;
    cursor: grab;
}

.voy2courses-audio-progress-handle:active {
    cursor: grabbing;
    transform: translateY(-50%) scale(1.2);
}

.voy2courses-audio-time {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
}

/* Controles Extras */
.voy2courses-audio-extra-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.voy2courses-control-btn {
    background: transparent;
    border: none;
    color: var(--voy2-white);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.voy2courses-control-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Volume Slider */
.voy2courses-volume-slider-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: var(--voy2-gray-800);
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
}

.voy2courses-volume-slider-wrapper.active {
    opacity: 1;
    visibility: visible;
}

#voy2courses-volume-slider {
    writing-mode: vertical-lr;
    direction: rtl;
    width: 30px;
    height: 100px;
    -webkit-appearance: none;
    background: transparent;
}

#voy2courses-volume-slider::-webkit-slider-track {
    width: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

#voy2courses-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--voy2-white);
    border-radius: 50%;
    cursor: pointer;
}

/* Speed Menu */
.voy2courses-speed-menu,
.voy2courses-caption-size-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    background: var(--voy2-gray-800);
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    padding: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 1000;
}

.voy2courses-speed-menu.active,
.voy2courses-caption-size-menu.active {
    opacity: 1;
    visibility: visible;
}

.voy2courses-speed-menu button,
.voy2courses-caption-size-menu button {
    background: transparent;
    border: none;
    color: var(--voy2-white);
    padding: 5px 15px;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
    font-size: 0.85rem;
}

.voy2courses-speed-menu button:hover,
.voy2courses-caption-size-menu button:hover {
    background: rgba(255,255,255,0.1);
}

.voy2courses-speed-menu button.active,
.voy2courses-caption-size-menu button.active {
    background: var(--voy2-brand-blue);
}

/* Tamanhos de Legenda */
.voy2courses-subtitles-container[data-size="small"] .voy2courses-subtitle-text-display {
    font-size: 0.9rem;
}

.voy2courses-subtitles-container[data-size="medium"] .voy2courses-subtitle-text-display {
    font-size: 1.1rem;
}

.voy2courses-subtitles-container[data-size="large"] .voy2courses-subtitle-text-display {
    font-size: 1.4rem;
}

/* Scrollbars */
.voy2courses-slides-container::-webkit-scrollbar,
.voy2courses-subtitles-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.voy2courses-slides-container::-webkit-scrollbar-track,
.voy2courses-subtitles-container::-webkit-scrollbar-track {
    background: transparent;
}

.voy2courses-player-sidebar::-webkit-scrollbar-track {
    background: var(--voy2-gray-100);
}

.voy2courses-slides-container::-webkit-scrollbar-thumb,
.voy2courses-subtitles-container::-webkit-scrollbar-thumb,
.voy2courses-player-sidebar::-webkit-scrollbar-thumb {
    background: var(--voy2-gray-600);
    border-radius: 4px;
}

.voy2courses-slides-container::-webkit-scrollbar-thumb:hover,
.voy2courses-subtitles-container::-webkit-scrollbar-thumb:hover,
.voy2courses-player-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--voy2-gray-500);
}

/* Responsividade */
@media (max-width: 768px) {
    .voy2courses-player-body {
        flex-direction: column-reverse;
    }
    
    .voy2courses-player-sidebar {
        width: 100%;
        max-height: 40vh;
        border-left: none;
        border-top: 1px solid var(--voy2-gray-200);
    }
    
    .voy2courses-audio-player-container,
    .voy2courses-slides-container,
    .voy2courses-subtitles-container {
        padding: 15px;
    }
    
    .voy2courses-lesson-title-main {
        font-size: 1.2rem;
    }
    
    .voy2courses-large-play-icon {
        font-size: 6rem;
    }
    
    .voy2courses-subtitle-text-display {
        font-size: 0.9rem;
    }
    
    .voy2courses-back-button {
        padding: 4px;
    }
    
    .voy2courses-platform-title {
        font-size: 0.9rem;
    }
    
    .voy2courses-current-lesson-title {
        display: none;
    }
}

/* ========================================
   SHORTCODES - DESIGN MODERNO E SIMPLIFICADO
   ======================================== */

/* Container Base para Shortcodes */
.voy2courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Padding específico apenas para o formulário */
#voy2courses-onboarding-form-wrapper {
    padding: 3rem;
}

/* Remove padding dos containers de lista */
.voy2courses-course-list,
.voy2courses-user-dashboard {
    padding: 0;
}

/* ========================================
   FORMULÁRIO DE ONBOARDING
   ======================================== */
#voy2courses-onboarding-form-wrapper {
    background: var(--voy2-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

#voy2courses-onboarding-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--voy2-brand-blue), var(--voy2-brand-purple), var(--voy2-brand-pink));
}

#voy2courses-onboarding-form-wrapper h2 {
    color: var(--voy2-gray-800);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Quota Warning */
.voy2courses-message.voy2courses-error {
    background: #fee2e2;
    border: 1px solid #f87171;
    color: #991b1b;
    padding: 1.5rem;
    border-radius: 12px;
    font-weight: 500;
}

/* Form Groups */
.voy2courses-form-group {
    margin-bottom: 2rem;
}

.voy2courses-form-group label {
    display: block;
    color: var(--voy2-gray-700);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.voy2courses-form-control {
    width: 100%;
    
    border: 2px solid var(--voy2-gray-200);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--voy2-gray-50);
}

.voy2courses-form-control:focus {
    outline: none;
    border-color: var(--voy2-brand-blue);
    background: var(--voy2-white);
    box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.1);
}

select.voy2courses-form-control {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpolyline points="6 9 12 15 18 9"%3e%3c/polyline%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 3rem;
}

select.voy2courses-form-control::-ms-expand {
    display: none;
}

/* Garantir que o select seja clicável */
select.voy2courses-form-control option {
    background: white;
    color: var(--voy2-gray-700);
    padding: 0.5rem;
}

select.voy2courses-form-control:focus {
    outline: none;
    border-color: var(--voy2-brand-blue);
    background-color: var(--voy2-white);
    box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.1);
}

textarea.voy2courses-form-control {
    resize: vertical;
    min-height: 120px;
}

/* File Input */
input[type="file"].voy2courses-form-control {
    padding: 0.75rem 1rem;
    border: 2px dashed var(--voy2-gray-300);
    background: var(--voy2-gray-50);
}

input[type="file"].voy2courses-form-control::file-selector-button {
    background: var(--voy2-gray-700);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
}

/* Submit Button Minimalista com Borda Animada */
.voy2courses-btn {
    position: relative;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--voy2-gray-700);
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.voy2courses-btn-primary {
    background-image: linear-gradient(white, white),
                      linear-gradient(45deg, var(--voy2-brand-purple), var(--voy2-brand-blue), var(--voy2-brand-pink), var(--voy2-brand-purple));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 100% 100%, 200% 200%;
    animation: borderAnimation 3s ease infinite;
}

@keyframes borderAnimation {
    0% { background-position: 0% 50%, 0% 50%; }
    50% { background-position: 0% 50%, 100% 50%; }
    100% { background-position: 0% 50%, 0% 50%; }
}

.voy2courses-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #8D00FF !important;
    border-color: #8D00FF !important;
}

.voy2courses-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    animation: none;
}

/* Loader */
.voy2courses-loader {
    text-align: center;
    padding: 3rem;
}

.voy2courses-loader p {
    color: var(--voy2-gray-600);
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Success Message */
.voy2courses-message.voy2courses-success {
    background: #d1fae5;
    border: 1px solid #34d399;
    color: #065f46;
    padding: 1.5rem;
    border-radius: 12px;
    font-weight: 500;
}

/* ========================================
   LISTA DE CURSOS (MEUS CURSOS & PÚBLICOS)
   ======================================== */
/* Grid de Cursos */
.voy2courses-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

/* Card de Curso */
.voy2courses-course-card {
    background: var(--voy2-white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--voy2-gray-100);
    padding: 1.5rem;
}

.voy2courses-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Conteúdo do Card */
.voy2courses-course-card h3 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.voy2courses-course-link {
    color: var(--voy2-gray-800);
    text-decoration: none;
    transition: color 0.3s ease;
}

.voy2courses-course-link:hover {
    color: var(--voy2-brand-blue);
}

/* Meta Tags Simplificadas */
.voy2courses-course-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.voy2courses-category-tag {
    background: var(--voy2-gray-100);
    color: var(--voy2-gray-600);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.voy2courses-visibility-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.voy2courses-visibility-tag.voy2courses-public {
    background: #e6f7ff;
    color: #0369a1;
}

.voy2courses-visibility-tag.voy2courses-private {
    background: #fef2f2;
    color: #991b1b;
}

.voy2courses-author {
    font-size: 0.8rem;
    color: var(--voy2-gray-500);
}

/* Empty State */
.voy2courses-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--voy2-gray-500);
    background: var(--voy2-gray-50);
    border-radius: 12px;
    border: 2px dashed var(--voy2-gray-300);
}

.voy2courses-empty-state::before {
    content: '📭';
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

/* ========================================
   DASHBOARD DO USUÁRIO
   ======================================== */
/* Dashboard Grid - Card único */
.voy2courses-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
}

/* Dashboard Card */
.voy2courses-dashboard-card {
    background: var(--voy2-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--voy2-gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.voy2courses-dashboard-card h3 {
    color: var(--voy2-gray-700);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Quota Info */
.voy2courses-quota-info {
    text-align: center;
    flex: 1;
}

.voy2courses-quota-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--voy2-brand-blue);
    line-height: 1;
}

.voy2courses-quota-info p {
    color: var(--voy2-gray-600);
    margin-top: 0.5rem;
    font-size: 1rem;
}

.voy2courses-renewal-date {
    background: var(--voy2-gray-50);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    color: var(--voy2-gray-600);
    font-size: 0.85rem;
    text-align: center;
    white-space: nowrap;
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
@keyframes voy2courses-slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.voy2courses-course-card,
.voy2courses-dashboard-card {
    animation: voy2courses-slideIn 0.5s ease backwards;
}

.voy2courses-course-card:nth-child(1) { animation-delay: 0.1s; }
.voy2courses-course-card:nth-child(2) { animation-delay: 0.2s; }
.voy2courses-course-card:nth-child(3) { animation-delay: 0.3s; }
.voy2courses-course-card:nth-child(4) { animation-delay: 0.4s; }
.voy2courses-course-card:nth-child(5) { animation-delay: 0.5s; }
.voy2courses-course-card:nth-child(6) { animation-delay: 0.6s; }

/* ========================================
   RESPONSIVIDADE PARA SHORTCODES
   ======================================== */
@media (max-width: 768px) {
    #voy2courses-onboarding-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .voy2courses-course-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .voy2courses-dashboard-card {
        flex-direction: column;
        text-align: center;
    }
    
    .voy2courses-quota-number {
        font-size: 2.5rem;
    }
}


/* Garantir que apenas um slide aparece por vez */
.voy2courses-chapter-slides {
    position: relative;
    min-height: 400px;
}

.voy2courses-chapter-slide {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.voy2courses-chapter-slide.voy2courses-active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Melhorar layout dos slides */
.voy2courses-slide-content {
    padding: 20px;
    line-height: 1.8;
}

.voy2courses-slide-text h3 {
    color: #fff !important;
}

.voy2courses-slide-text h4 {
    color: #fff !important;
}



.voy2courses-slide-header {
    color: #7F00FF;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.voy2courses-highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.voy2courses-highlight-box h3 {
    margin-top: 0;
    color: #2c3e50;
}

.voy2courses-highlight-box ul {
    margin: 10px 0;
    padding-left: 20px;
}

.voy2courses-highlight-box li {
    margin: 8px 0;
    color: #333;
}

/* Transição para exercícios */
.voy2courses-exercises-transition {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    background: #f0f8ff;
    border-radius: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Indicador no último slide */
.voy2courses-exercises-indicator {
    margin-top: 30px;
    padding: 20px;
    background: #e8f5e9;
    border-radius: 8px;
    text-align: center;
}

.voy2courses-exercises-indicator hr {
    margin-bottom: 15px;
    border-color: #4caf50;
}

/* Área de exercícios */
#voy2courses-exercise-area {
    margin-top: 30px;
    padding: 30px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow-y: auto; /* Adicionar scroll vertical */
    overflow-x: hidden;
}

/* Melhorar o scroll */
#voy2courses-exercise-area::-webkit-scrollbar {
    width: 8px;
}

#voy2courses-exercise-area::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

#voy2courses-exercise-area::-webkit-scrollbar-thumb {
    background: var(--voy2-brand-purple);
    border-radius: 4px;
    opacity: 0.7;
}

#voy2courses-exercise-area::-webkit-scrollbar-thumb:hover {
    opacity: 1;
}

.voy2courses-exercises-container h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.voy2courses-exercise-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.voy2courses-exercise-number {
    font-weight: bold;
    color: #333 !important;
    margin-bottom: 10px;
}

/* Botão de exercícios do módulo */
.voy2courses-module-completion-section {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    text-align: center;
}

.voy2courses-congratulations h3 {
    color: white;
    font-size: 2em;
    margin-bottom: 15px;
}

.voy2courses-congratulations .fa-trophy {
    font-size: 3em;
    color: #ffd700;
    margin-bottom: 20px;
    display: block;
}

.voy2courses-btn-large {
    padding: 15px 30px;
    font-size: 1.2em;
}

/* Animação de shake para validação */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake-animation {
    animation: shake 0.5s ease-in-out;
}

/* Feedback de Exercícios Melhorado */
.voy2courses-exercise-feedback {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    animation: fadeInUp 0.3s ease;
}



.voy2courses-exercise-feedback.voy2courses-correct {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4caf50;
    color: #2e7d32;
}

.voy2courses-exercise-feedback.voy2courses-incorrect {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #f44336;
    color: #c62828;
}

.voy2courses-feedback-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.voy2courses-feedback-text {
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.voy2courses-feedback-explanation {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.voy2courses-feedback-hint {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
    text-align: center;
}

/* Estados visuais das opções */
.voy2courses-option-label.voy2courses-correct-option {
    background: rgba(76, 175, 80, 0.15) !important;
    border-color: #4caf50 !important;
}

.voy2courses-option-label.voy2courses-incorrect-option {
    background: rgba(244, 67, 54, 0.15) !important;
    border-color: #f44336 !important;
}

/* Estados dos exercícios respondidos */
.voy2courses-exercise-item.voy2courses-answered-correct {
    position: relative;
    opacity: 0.9;
}

.voy2courses-exercise-item.voy2courses-answered-correct::after {
    content: '\2713';
    position: absolute;
    top: 10px;
    right: 10px;
    color: #4caf50;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Progresso dos exercícios */
.voy2courses-exercises-progress {
    margin-bottom: 2rem;
    text-align: center;
}

.voy2courses-progress-text {
    font-size: 0.9rem;
    color: var(--voy2-gray-600);
    margin-bottom: 0.5rem;
    display: block;
}

.voy2courses-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
}

.voy2courses-progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--voy2-brand-blue), var(--voy2-brand-purple));
    transition: width 0.5s ease;
}

/* Resumo de exercícios */
.voy2courses-exercises-summary {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    margin-top: 2rem;
}

.voy2courses-score-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.voy2courses-score-percentage {
    font-size: 3rem;
    font-weight: bold;
    color: var(--voy2-brand-purple);
    display: block;
    margin: 1rem 0;
}

/* Container de exercícios completos */
.voy2courses-exercises-container.voy2courses-all-completed {
    border: 2px solid #4caf50;
    animation: glow 2s ease-in-out;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 10px rgba(76, 175, 80, 0.3); }
    50% { box-shadow: 0 0 20px rgba(76, 175, 80, 0.6); }
}

.voy2courses-option-text {
    color: #444 !important;
}

.voy2courses-option-text ul {
    color: #444 !important;
}

.voy2courses-option-text li {
    color: #444 !important;
}

/* Botão Ver Exercícios */
.voy2courses-nav-button.voy2courses-exercises-ready {
    background: linear-gradient(135deg, var(--voy2-brand-blue), var(--voy2-brand-purple));
    color: white;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.voy2courses-nav-button.voy2courses-exercises-ready:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

@keyframes pulse {
    0% { opacity: 0.9; }
    50% { opacity: 1; }
    100% { opacity: 0.9; }
}

/* Overview especial para primeiro slide */
.voy2courses-highlight-box.voy2courses-course-overview {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.05) 0%, rgba(141, 0, 255, 0.05) 100%);
    border: 2px solid rgba(141, 0, 255, 0.2);
    padding: 2.5rem;
}

.voy2courses-course-overview table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.voy2courses-course-overview table th {
    background: linear-gradient(135deg, var(--voy2-brand-blue), var(--voy2-brand-purple));
    color: white;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
}

.voy2courses-course-overview table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.voy2courses-course-overview .mermaid {
    margin: 1.5rem 0;
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

/* Resumo do curso nos cards */
.voy2courses-course-summary {
    color: var(--voy2-gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.75rem 0;
    min-height: 2.5rem;
}

/* Stats do curso */
.voy2courses-course-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.voy2courses-stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--voy2-gray-500);
}

.voy2courses-stat i {
    color: var(--voy2-brand-purple);
    font-size: 0.9rem;
}

/* Navegação após exercícios */
.voy2courses-exercises-navigation {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

#voy2courses-next-chapter-after-exercises {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
}

.voy2courses-exercise-type-badge {
    color: #333;
}

.voy2courses-match-columns-container {
    color: #333;
}

.voy2courses-sortable-container ul {
    color: #333;
}

.voy2courses-sortable-container li {
    color: #333;
}

/* Estilos para ordenação mobile-friendly */
.voy2courses-sortable-container {
    position: relative;
}

.voy2courses-sortable-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: move;
    transition: all 0.3s ease;
}

.voy2courses-sortable-item:hover {
    background: #e9ecef;
}

.voy2courses-sortable-item.ui-sortable-helper {
    opacity: 0.8;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Conteúdo do item */
.voy2courses-sortable-content {
    flex: 1;
    padding: 0 15px;
}

/* Botões de ordenação para mobile */
.voy2courses-order-controls {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.voy2courses-order-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    min-width: 40px;
    transition: background 0.2s;
}

.voy2courses-order-btn:hover:not(:disabled) {
    background: #5a6268;
}

.voy2courses-order-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.voy2courses-order-btn i {
    font-size: 14px;
}

/* Ícone de arrastar (esconder em mobile) */
.voy2courses-drag-handle {
    color: #6c757d;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .voy2courses-drag-handle {
        display: none;
    }
    
    .voy2courses-sortable-item {
        cursor: default;
    }
    
    .voy2courses-order-controls {
        display: flex !important;
    }
}

/* Esconder botões em desktop se preferir */
@media (min-width: 769px) {
    .voy2courses-order-controls {
        display: none;
    }
}

/* Botões de ordenação mais delicados */
.voy2courses-order-controls {
    display: flex;
    align-items: center;
    gap: 2px;
}

.voy2courses-order-btn {
    background: transparent;
    color: #6c757d;
    border: 1px solid #dee2e6;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.voy2courses-order-btn:hover:not(:disabled) {
    background: #f8f9fa;
    color: #495057;
    border-color: #adb5bd;
}

.voy2courses-order-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.voy2courses-order-btn i {
    font-size: 10px;
}

/* Ajustar item para mobile */
@media (max-width: 768px) {
    .voy2courses-sortable-item {
        padding: 12px 10px;
        font-size: 14px;
    }
    
    .voy2courses-sortable-content {
        padding: 0 10px;
        flex: 1;
    }
    
    .voy2courses-order-controls {
        flex-shrink: 0;
    }
}

/* Visual mais sutil para os controles */
.voy2courses-sortable-item:not(:hover) .voy2courses-order-controls {
    opacity: 0.7;
}

.voy2courses-sortable-item:hover .voy2courses-order-controls {
    opacity: 1;
}

/* Placeholder ao arrastar */
.voy2courses-sortable-placeholder {
    background: #e3f2fd;
    border: 2px dashed #90caf9;
    margin-bottom: 10px;
    height: 60px;
    border-radius: 5px;
}

/* Estilos para pontuação */
.voy2courses-score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    font-weight: bold;
    color: white;
}

.voy2courses-score-good {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.voy2courses-score-low {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* Exercício respondido incorretamente */
.voy2courses-incorrect-answer {
    opacity: 0.8;
}

.voy2courses-incorrect-answer .voy2courses-option-label.voy2courses-selected {
    background: #ffe0e0;
    border-color: #dc3545;
}

.voy2courses-try-again-message {
    color: #333;
}

.voy2courses-module-completion p {
    color: #333;
}

.voy2courses-module-completion {
    color: #333;
}

.voy2courses-exercises-instructions p {
    color: #444;
}

.voy2courses-exercises-instructions {
    color: #444;
}

.voy2courses-feedback-text {
    color: #555;
}

.voy2courses-exercises-summary.voy2courses-last-chapter-summary p  {
    color: #555;
}

.voy2courses-exercises-summary.voy2courses-last-chapter-summary {
    color: #555;
}

/* Estilos para feedback dos exercícios do módulo */
.voy2courses-feedback-text {
    line-height: 1.6;
    white-space: pre-wrap;
}

.voy2courses-feedback.voy2courses-incorrect .voy2courses-feedback-text {
    text-align: left;
    padding: 15px;
}

.voy2courses-feedback.voy2courses-incorrect .voy2courses-feedback-text br {
    margin-bottom: 5px;
}

/* Destacar as associações e sequências corretas */
.voy2courses-feedback.voy2courses-incorrect .voy2courses-feedback-text {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 5px;
    margin-top: 10px;
}