/* ============================================
   FUVEST - Academic Purple Theme
   Classical, scholarly, intellectual design
   ============================================ */

/* Using colors from index.html with academic purple accent */
:root {
    --exam-accent: #8b5cf6; /* Academic purple accent */
    --exam-accent-hover: #7c3aed;
    --exam-gradient: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Hero Section - Academic Purple Gradient */
.hero-section {
    background: var(--exam-gradient);
}

/* Classical column-inspired design */
.content-card {
    position: relative;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.content-card::before,
.content-card::after {
    content: '';
    position: absolute;
    left: 2rem;
    right: 2rem;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.content-card::before {
    top: 0;
}

.content-card::after {
    bottom: 0;
}

/* Book/library visual metaphors */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(124, 58, 237, 0.02) 100px,
            rgba(124, 58, 237, 0.02) 101px
        );
    pointer-events: none;
    z-index: -1;
}

/* Elegant serif typography emphasis */
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '◆';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 0.75rem;
}

/* Sophisticated card design */
.competencia-card {
    background: linear-gradient(135deg, var(--surface-elevated) 0%, var(--surface) 100%);
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.08);
}

.competencia-card:hover {
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

/* Classical ornamental elements */
.competencia-title::before {
    content: '▸';
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 0.875em;
}

/* Scholarly destaque box */
.destaque-box {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-violet) 100%);
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

/* Academic excellence visual language */
.estrategia-card {
    background: var(--surface);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.estrategia-card:hover {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-elevated) 100%);
}

/* Refined stat items */
.stat-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

/* Elegant grid spacing */
.competencias-grid {
    gap: 2rem;
}

.estrategias-grid {
    gap: 1.75rem;
}

/* Scholarly badge */
.hero-badge {
    font-style: italic;
    font-weight: 600;
}

/* Sophisticated color gradients */
.intro-text {
    position: relative;
    padding-left: 1.5rem;
}

.intro-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent-violet));
    border-radius: 3px;
}

/* Pillar design elements */
.main-content {
    position: relative;
}

.main-content::before,
.main-content::after {
    content: '';
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    opacity: 0.1;
}

.main-content::before {
    left: 0;
}

.main-content::after {
    right: 0;
}

