/* Start custom CSS for html, class: .elementor-element-1790a8a */:root {
    --empo-primary: #0a6fb5;
    --empo-text-dark: #2c3e50;
    --empo-text-light: #555555;
    --empo-border: #dcdde1;
    --empo-bg-hover: #f4f8fb;
}

/* Contenedor Principal */
.info-relevante-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    max-width: 950px;
    margin: 40px auto; 
}

/* Encabezado */
.info-header {
    margin-bottom: 50px;
    border-bottom: 3px solid var(--empo-primary);
    padding-bottom: 20px;
}

.info-header h2 {
    color: var(--empo-primary);
    font-size: 30px; 
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.info-header p {
    font-size: 17px; 
    color: var(--empo-text-light);
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Bloques por Categoría/Año */
.info-year-block {
    margin-bottom: 40px;
}

.info-year-title {
    font-size: 24px;
    color: var(--empo-text-dark);
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--empo-border);
    font-weight: 600;
}

/* Lista de Documentos */
.info-doc-list {
    display: flex;
    flex-direction: column;
}

.info-doc-item {
    display: flex;
    align-items: center;
    padding: 20px 15px;
    border-bottom: 1px solid #eeeeee;
    transition: background-color 0.2s ease, border-radius 0.2s;
    background-color: #ffffff;
}

.info-doc-item:last-child {
    border-bottom: none;
}

/* Resalte sutil al pasar el mouse por toda la fila */
.info-doc-item:hover {
    background-color: var(--empo-bg-hover);
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.info-doc-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    color: var(--empo-primary);
    opacity: 0.8;
}

.info-doc-details {
    flex-grow: 1;
    padding: 0 25px;
}

.info-doc-details h4 {
    margin: 0 0 6px 0;
    font-size: 18px;
    color: var(--empo-text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.info-doc-meta {
    margin: 0;
    font-size: 15px;
    color: #888888;
}

.info-doc-action {
    flex-shrink: 0;
}

/* Botón fantasma (borde azul, fondo transparente) */
.info-btn-descargar {
    display: inline-block;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--empo-primary);
    background-color: transparent;
    border: 1px solid var(--empo-primary);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.info-btn-descargar:hover {
    background-color: var(--empo-primary);
    color: #ffffff;
}

/* Responsividad para móviles */
@media (max-width: 768px) {
    .info-doc-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 10px;
    }
    
    .info-doc-icon {
        display: none; /* Ocultamos el icono en móviles para ahorrar espacio */
    }
    
    .info-doc-details {
        padding: 0;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .info-doc-action {
        width: 100%;
    }
    
    .info-btn-descargar {
        display: block;
        text-align: center;
        width: 100%;
    }
}/* End custom CSS */