/*
Theme Name: Tema MINVU Biobío
Description: Basado en el Framework Digital de Gobierno (Bootstrap 4).
*/

/* --- Ajustes para Noticias --- */
.img-noticia-crop {
    object-fit: cover;
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* --- Ajustes para Enlaces Institucionales --- */
/* El framework ya maneja los colores, aquí solo ajustamos el hover */
.enlace-institucional {
    font-weight: 500;
    line-height: 1.2;
    display: inline-block;
}

.enlace-institucional:hover {
    text-decoration: none !important;
    opacity: 0.8;
}

/* Efecto sutil para los iconos */
.icon-container img {
    transition: transform 0.2s ease;
}
.icon-container:hover img {
    transform: scale(1.1);
}

/* --- COMPONENTE: CARD DATA (Círculos con números) --- */
.card-data-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-data {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    position: relative;
    transition: transform 0.3s ease;
}

.card-data:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-data-quantity {
    background-color: #0056b3 !important; /* Azul Institucional */
    color: white !important;
    font-weight: bold;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.1rem;
}

.card-data-title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.card-data h5 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.card-data p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* --- CONTENEDOR DE RECURSOS PRO --- */
.recursos-wrapper {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.categoria-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-left: 5px solid #0056b3;
    padding-left: 15px;
}

.categoria-header i {
    color: #0056b3;
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Grilla Inteligente: Se ajusta sola según el tamaño de pantalla */
.grid-descargas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
}

/* Botones Estilo "Pill" mejorados */
.btn-recurso {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #0056b3 !important;
    border: 1px solid #0056b3;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none !important;
}

.btn-recurso:hover {
    background: #0056b3;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,86,179,0.3);
}

.btn-recurso::before {
    content: "\f1c1"; /* Icono de PDF de FontAwesome */
    font-family: "Font Awesome 5 Free";
    margin-right: 8px;
    font-weight: 900;
}