/* --- Configuración General --- */
body { 
    font-family: 'Montserrat', sans-serif !important; 
    background-color: #f8f9fa; 
}

/* --- Colores Institucionales --- */
.text-colef-orange { color: #DF8026 !important; }
.text-colef-teal { color: #0B6772 !important; }
.bg-colef-teal { background-color: #0B6772 !important; }
.btn-colef-orange { background-color: #DF8026; color: white; border-radius: 20px; }

/* --- Banner Hero --- */
.hero-header {
    background-image: url('../img/cabezera.jpeg');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.hero-overlay {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 80%;
    color: #0B6772;
    font-weight: bold;
}

/* --- Botones --- */
.btn-colef { 
    background-color: #0B6772 !important; 
    color: white !important; 
    border: none !important; 
}

.btn-search { 
    background-color: #DF8026 !important; 
    color: white !important; 
}

/* --- Tarjetas de Investigador --- */
.card-investigador {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    text-align: left;
    background: #fff;
    transition: 0.3s;
    height: 100%;
    margin-bottom: 20px;
}

.card-investigador:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.badge-orange {
    background-color: #f7d9a8;
    color: #a87220;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
}

/* --- Elementos Varios --- */
h1, h2, h3 { color: #0B6772; }

.card-action { 
    border: 1px solid #dee2e6; 
    border-radius: 10px; 
    transition: 0.3s; 
    padding: 20px;
    background: #fff;
}

.numeralia-card { 
    background-color: #0B6772; 
    color: white; 
    border-radius: 10px; 
    padding: 20px; 
    text-align: center; 
}

.badge-especialidad {
    background-color: #F5DEB3; /* Naranja claro */
    color: #A0522D; /* Café/Naranja oscuro para el texto */
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}
.card-investigador {
    border: 1px solid #dee2e6;
    border-radius: 15px;
    background: #fff;
    transition: transform 0.2s;
}

.profile-img {
    width: 80px;  /* Ajustado para que quepa mejor en el nuevo layout */
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #DF8026;
}

.badge-especialidad {
    background-color: #F5DEB3;
    color: #A0522D;
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    display: inline-block;
}