/* assets/css/evaluaciones.css */

.eval-hero {
    /* Degradado en tonos Índigo / Azul Profundo */
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    color: white;
    margin-top: 80px; 
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 20px rgba(48, 63, 159, 0.2);
}

/* Selector de Años estilo "Pill" moderno */
.eval-years-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.eval-year-btn {
    background: white;
    border: 2px solid #E8EAF6;
    color: #2E7D32;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.eval-year-btn:hover {
    border-color: #2E7D32;
    transform: translateY(-2px);
}
.eval-year-btn.active {
    background: #2E7D32;
    color: white;
    border-color: #2E7D32;
    box-shadow: 0 8px 15px rgba(92, 107, 192, 0.3);
}

.eval-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-left: 5px solid #2E7D32;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}
.eval-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-left-color: #E91E63; 
}

.eval-card-icon {
    font-size: 2.5rem;
    color: #d32f2f; 
    margin-bottom: 1rem;
}
.eval-card-title {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    flex-grow: 1; 
}

.btn-download-sim {
    background: #f8f9fa;
    color: #2E7D32;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
    transition: 0.2s;
    text-align: center;
}
.eval-card:hover .btn-download-sim {
    background: #2E7D32;
    color: white;
}