/* ========================================
   SECCIÓN DE REPASO GLOBAL - ESTILOS ADICIONALES
   ======================================== */

/* Sección de Repaso Global */
.review-global-section {
    margin: 2rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin: 0;
}

/* Tarjeta de Resumen de Repaso */
.review-summary-card {
    padding: 2rem;
}

.summary-main {
    text-align: center;
    margin-bottom: 2rem;
}

.summary-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.summary-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Desglose por Tema */
.summary-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.topic-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Acciones de Resumen */
.summary-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.summary-actions .btn {
    flex: 1;
    max-width: 300px;
}

.btn-accent {
    background: transparent;
    color: var(--electric-gold);
    border: 1px solid var(--electric-gold);
}

.btn-accent:hover {
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .summary-breakdown {
        grid-template-columns: 1fr;
    }

    .summary-actions {
        flex-direction: column;
    }

    .summary-actions .btn {
        max-width: 100%;
    }

    .summary-number {
        font-size: 2.5rem;
    }
}